Android控件篇12之 Toast

本文介绍Toast。包括Toast的基本用法和自定义布局的Toast。

1. Toast的基本用法

点击查看:Toast的基本用法完整代码

根据显示时间,Toast分为短Toast 和 长Toast。

短Toast如下:

Toast.makeText(this, "Hello", Toast.LENGTH_SHORT).show();

长Toast如下:

Toast.makeText(this, "Hello", Toast.LENGTH_LONG).show();

2. 自定义布局的Toast

2.1 自定义布局

<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/ic_action_call"
        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>

2.2 使用自定义布局

public void sendMessage(View view) {
    LayoutInflater inflater = getLayoutInflater();
    View layout = inflater.inflate(R.layout.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();
}   
by skywang
Previous     Next