public void showToast(){ //獲取一個Toast對象,爲下面操做準備 Toast toast = new Toast(this); ImageView img = new ImageView(this); //用系統提供的圖片 img.setImageResource(R.drawable.ic_launcher); //設置圖片 toast.setView(img); toast.show(); }
最後給一個按鈕設定一個監聽器,在onClick方法中調用對應的showToast方法就能夠了。(下面兩個例子一樣省略這一步)
public void showToast2(){ Toast toast = Toast.makeText(this, "這是一個有圖片的吐司", Toast.LENGTH_LONG); ImageView img = new ImageView(this); img.setImageResource(R.drawable.ic_launcher); //獲得toast的佈局對象 LinearLayout toast_layout = (LinearLayout) toast.getView(); //爲toast添加圖片資源,第二個參數,0表示圖片在上 toast_layout.addView(img,1); toast.show(); }
有時候上面兩種還沒能知足本身的要求,就能夠自定義佈局(我在drawable中放了兩張圖片,詹姆斯和庫裏的)android
準備好你想要展現的Toast佈局文件,我在layout文件夾新建了一個toast.xml佈局
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="horizontal"> 6 <ImageView 7 android:layout_width="50dp" 8 android:layout_height="90dp" 9 android:background="@drawable/c2" 10 /> 11 <TextView 12 android:layout_width="wrap_content" 13 android:layout_height="90dp" 14 android:gravity="center" 15 android:text="VS" 16 /> 17 <ImageView 18 android:layout_width="50dp" 19 android:layout_height="90dp" 20 android:background="@drawable/c1" 21 /> 22 </LinearLayout>
public void showMyTosat(){ //把一個佈局變成一個View對象 LayoutInflater inflater = LayoutInflater.from(this); View toast_layout = inflater.inflate(R.layout.toast, null); Toast toast = new Toast(this); //把獲取到的View對象做爲setView的參數 toast.setView(toast_layout); toast.show(); }