Toast is built on TextView, and by default, gravity is aligned to the left. So you need to create your own TextView, for example:
<TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center_vertical|center_horizontal" android:text="all the text you want" />
And you assign TextView to Toast as follows:
Toast t = new Toast(yourContext); t.setView(yourNewTextView);
Source
source share