我是Android新手。现在我正在学习Toast。是否可以定位吐司?
每当我敬酒时,它就会进入屏幕的底部。
这是我的代码:
Context context = getApplicationContext();
Toast toast = Toast.makeText(context, "Saved successfully.", Toast.LENGTH_SHORT);
toast.show();
答案 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();