Toast使用详解0

Toast是Android中常用的提示工具。

Toast的常用使用方法有两种:使用系统默认的Toast 或者是自定义的Toast。

其效果如下:

Toast使用详解0Toast使用详解0


主程序:

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button1=(Button)findViewById(R.id.btnTextToast);
        Button button2=(Button)findViewById(R.id.btnImageToast);
        button1.setOnClickListener(new OnClickListener() {
			
			public void onClick(View v) {
				// TODO Auto-generated method stub
				//第三个参数表示持续的时间长短
				Toast.makeText(MainActivity.this, "我是Toast", Toast.LENGTH_LONG).show();
			}
		});
        
        button2.setOnClickListener(new OnClickListener() {
			
			public void onClick(View v) {
				// TODO Auto-generated method stub
				View view=getLayoutInflater().inflate(R.layout.toast, null);
				TextView textView=(TextView)view.findViewById(R.id.textview);
				textView.setText("我也是Toast");
				Toast toast=new Toast(MainActivity.this);
				toast.setView(view);
				toast.setDuration(Toast.LENGTH_LONG);
				toast.show();
			}
		});
    }

}

自定义Toast布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="horizontal" android:layout_width="fill_parent"
	android:layout_height="fill_parent"  android:background="#555" android:layout_margin="10dp">
	<ImageView android:layout_width="50dp"
		android:layout_height="50dp" android:src="@drawable/ic_launcher" />
	<TextView android:id="@+id/textview" android:layout_width="fill_parent"
		android:layout_height="wrap_content" android:layout_margin="10dp" />
</LinearLayout>
 

Toast使用makeText方法来创建显示对象的原因是:Toast使用makeText方法创建的View对象来显示信息。


上一篇:三层体系结构总结(六)


下一篇:Android 上滑显示底部导航,下滑显示标题bar