Toast 的基本用法:
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
高级用法1:改变Toast显示的位置
默认的Toast的显示位置是在屏幕的底部,可以使用以下方法改变:
toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);
其中第一个参数是 gravity 常量,可以为Top,left等,第二、三个参数为x,y坐标,如上面的代码,如果想将Toast从左边往右边移动一点,则将第二个参数x设置为正,越大移动越多,类似,如果想往下移动一点,则第三个参数y设置为正,越大移动越多。
高级用法2:创建Toast布局
如果简单的text信息不够显示效果,你还可以创建一个layout布局作为Toast提醒。你可以先在xml文件中定义一个布局文件,然后传递根View常量到setView(View)函数中,代码如下:
创建 xml 布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="8dp"
android:background="#DAAA"
>
<ImageView android:src="@drawable/droid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="8dp"
/>
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFF"
/>
</LinearLayout>
java 文件中,我们在Toast文件中使用上述定义的布局文件,如下:
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.custom_toast,
(ViewGroup) findViewById(R.id.toast_layout_root));
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("This is a custom toast");
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
首先,通过getLayoutInflater() 或 getSystemService() 方法重新得到 LayoutInflater,然后用inflater(int,ViewGroup) cong XML 文件中填充Layout布局,第一个参数是Layout资源ID,第二个参数是root view。最后创建Toast并设置一些属性。