在Android中定位吐司?

时间:2013-09-20 06:22:16

标签: android toast

我是Android新手。现在我正在学习Toast。是否可以定位吐司?

每当我敬酒时,它就会进入屏幕的底部。

这是我的代码:

Context context = getApplicationContext();
Toast toast = Toast.makeText(context, "Saved successfully.", Toast.LENGTH_SHORT);
toast.show();

3 个答案:

答案 0 :(得分:1)

您可以使用setGravity(int, int, int)方法。

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

Toast文档:http://developer.android.com/guide/topics/ui/notifiers/toasts.html

Gravity文档:http://developer.android.com/reference/android/view/Gravity.html

答案 1 :(得分:1)

嗨试试这个example来定位和定制Android中的吐司

答案 2 :(得分:1)

试试这个,

Toast toast = Toast.makeText(context, "Saved successfully.", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.BOTTOM, 0, 200);
toast.show();