Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

when i use toast to display some text on screen it displays little bit above the bottom(default position).

now i want to display it in the middle of screen or according to my choice can any one guide me how to achieve this?

any help would be appreciated.

share|improve this question

2 Answers

up vote 124 down vote accepted

Positioning your Toast

A standard toast notification appears near the bottom of the screen, centered horizontally. You can change this position with the setGravity(int, int, int) method. This accepts three parameters: a Gravity constant, an x-position offset, and a y-position offset.

For example, if you decide that the toast should appear in the top-left corner, you can set the gravity like this:

toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);

If you want to nudge the position to the right, increase the value of the second parameter. To nudge it down, increase the value of the last parameter.

(taken directly from the official docs)

share|improve this answer

As an aside if you get the error indicating that you must call makeText, the following code makes it work:

Toast toast= Toast.makeText(getApplicationContext(), 
"Your string here", Toast.LENGTH_SHORT);  
toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 0);
toast.show();
share|improve this answer
makeText returns a Toast object, so you can simply add .addGravity and .show after the makeText. – NikkyD Oct 9 '12 at 16:57
"if you get the error indicating that you must call makeText" - when would the error show up? – Jacek Laskowski Mar 4 at 5:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.