0

我是安卓新手。现在我正在学习吐司。可以定位吐司吗?

每当我敬酒时,它都会出现在屏幕底部。

这是我的代码:

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

3 回答 3

1

嗨,试试这个例子在 android 中定位和自定义 toast

于 2013-09-20T06:25:52.267 回答
1

尝试这个,

Toast toast = Toast.makeText(context, "Saved successfully.", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.BOTTOM, 0, 200);
toast.show();
于 2013-09-20T06:33:54.370 回答
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

于 2013-09-20T06:23:08.290 回答