In android ,by default toast come in bottom of screen.
Toast.makeText(getApplicationContext(), "this is my Toast message!!! =)",Toast.LENGTH_LONG).show();
How can I place Toast at center of the screen.
There are lots of existing questions on this. Use toast.setGravity
function for your purpose. See How to change position of Toast in Android?
Eg( taken from one of answers on question):
Toast toast= Toast.makeText(getApplicationContext(),
"Your string here", Toast.LENGTH_LONG);
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, 0);
toast.show();
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, 0);
for further informations http://developer.android.com/guide/topics/ui/notifiers/toasts.html