我是安卓新手。现在我正在学习吐司。可以定位吐司吗?
每当我敬酒时,它都会出现在屏幕底部。
这是我的代码:
Context context = getApplicationContext();
Toast toast = Toast.makeText(context, "Saved successfully.", Toast.LENGTH_SHORT);
toast.show();
嗨,试试这个例子在 android 中定位和自定义 toast
尝试这个,
Toast toast = Toast.makeText(context, "Saved successfully.", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.BOTTOM, 0, 200);
toast.show();
你可以使用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