» 首頁 » 討論區 » Android程式設計 »自定Toast的外觀

自定Toast的外觀

發表人: Seachaos
積分: 2432
發表時間: 2011-08-26 17:33:39
相信大家有時候會對Android內建的Toast外觀有點煩
想要你Android程式的Toast Theme和人不一樣嗎?

1.先建立Toast的layout檔
(檔名請叫做toast_layout.xml)
[sea:javaCode]
<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="10dp"
android:background="#DFFF"
>
<ImageView android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="10dp"
/>
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textColor="#000"
/>
</LinearLayout>
[/sea]

2.顯示Toast

[sea:javaCode]
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_layout,
(ViewGroup) findViewById(R.id.toast_layout_root));

ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.icon);
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Toast的內文");

Toast toast = new Toast(getApplicationContext());
toast.setDuration(Toast.LENGTH_SHORT);
toast.setView(layout);
toast.show();
[/sea]

這就有和人家不一樣的Toast了