toast經常會用到,今天做個總結,特別是自定義toast的布局,值得一看。
一.默認展示
- // 第一個參數:當前的上下文環境。可用getApplicationContext()或this
- // 第二個參數:要顯示的字符串。也可是R.string中字符串ID
- // 第三個參數:顯示的時間長短。Toast默認的有兩個LENGTH_LONG(長)和LENGTH_SHORT(短),也可以使用毫秒如2000ms
- Toast toast=Toast.makeText(getApplicationContext(), "默認的Toast", Toast.LENGTH_SHORT);
- //顯示toast信息
- toast.show();
二.自定義顯示位置
- Toast toast=Toast.makeText(getApplicationContext(), "自定義顯示位置的Toast", Toast.LENGTH_SHORT);
- //第一個參數:設置toast在屏幕中顯示的位置。我現在的設置是居中靠頂
- //第二個參數:相對於第一個參數設置toast位置的橫向X軸的偏移量,正數向右偏移,負數向左偏移
- //第三個參數:同的第二個參數道理一樣
- //如果你設置的偏移量超過了屏幕的范圍,toast將在屏幕內靠近超出的那個邊界顯示
- toast.setGravity(Gravity.TOP|Gravity.CENTER, -50, 100);
- //屏幕居中顯示,X軸和Y軸偏移量都是0
- //toast.setGravity(Gravity.CENTER, 0, 0);
- toast.show();
三、帶圖片的
- oast toast=Toast.makeText(getApplicationContext(), "顯示帶圖片的toast", 3000);
- toast.setGravity(Gravity.CENTER, 0, 0);
- //創建圖片視圖對象
- ImageView imageView= new ImageView(getApplicationContext());
- //設置圖片
- imageView.setImageResource(R.drawable.ic_launcher);
- //獲得toast的布局
- LinearLayout toastView = (LinearLayout) toast.getView();
- //設置此布局為橫向的
- toastView.setOrientation(LinearLayout.HORIZONTAL);
- //將ImageView在加入到此布局中的第一個位置
- toastView.addView(imageView, 0);
- toast.show();
四、完全自定義顯示方式
1. toast.xml布局

<ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <TextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/content" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
2.代碼
public class ToastActivity extends Activity { private Button bt; private ImageView image; private TextView title, content; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); bt = (Button) findViewById(R.id.bt); bt.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { showToast(); } }); } private void showToast() { LayoutInflater inflater = getLayoutInflater(); View view = inflater.inflate(R.layout.toast, null); image = (ImageView) view.findViewById(R.id.image); title = (TextView) view.findViewById(R.id.title); content = (TextView) view.findViewById(R.id.content); image.setBackgroundResource(R.drawable.ic_launcher); title.setText("自定義toast"); content.setText("hello,self toast"); Toast toast = new Toast(getApplicationContext()); toast.setGravity(Gravity.CENTER, 0, 0); toast.setDuration(Toast.LENGTH_SHORT); toast.setView(view); toast.show(); } }
五、其他線程通過Handler的調用
//調用方法1 //Thread th=new Thread(this); //th.start(); //調用方法2 handler.post(new Runnable() { @Override public void run() { showToast(); } }); Java代碼 public void showToast(){ Toast toast=Toast.makeText(getApplicationContext(), "Toast在其他線程中調用顯示", Toast.LENGTH_SHORT); toast.show(); } Java代碼 Handler handler=new Handler(){ @Override public void handleMessage(Message msg) { int what=msg.what; switch (what) { case 1: showToast(); break; default: break; } super.handleMessage(msg); } }; Java代碼 @Override public void run() { handler.sendEmptyMessage(1); }