您的位置:首頁(yè) > 業(yè)內(nèi)資訊 > Android特效五種Toast詳解

Android特效五種Toast詳解

來(lái)源:互聯(lián)網(wǎng) | 時(shí)間:2015-07-02 17:59:47 | 閱讀:86 |  標(biāo)簽: Android   | 分享到:

Toast是Android中用來(lái)顯示顯示信息的一種機(jī)制,和Dialog不一樣的是,Toast是沒(méi)有焦點(diǎn)的,而且Toast顯示的時(shí)間有限,過(guò)一定的時(shí)間就會(huì)自動(dòng)消失。

1.默認(rèn)效果:

Android特效五種Toast詳解

代碼:

Toast.makeText(getApplicationContext(), "默認(rèn)Toast樣式",

Toast.LENGTH_SHORT).show();

2.自定義顯示位置效果:

Android特效五種Toast詳解

代碼:

toast = Toast.makeText(getApplicationContext(),

"自定義位置Toast", Toast.LENGTH_LONG);

toast.setGravity(Gravity.CENTER, 0, 0);

toast.show();

3.帶圖片效果:

Android特效五種Toast詳解

代碼

toast = Toast.makeText(getApplicationContext(),

"帶圖片的Toast", Toast.LENGTH_LONG);

toast.setGravity(Gravity.CENTER, 0, 0);

LinearLayout toastView = (LinearLayout) toast.getView();

ImageView imageCodeProject = new ImageView(getApplicationContext());

imageCodeProject.setImageResource(R.drawable.icon);

toastView.addView(imageCodeProject, 0);

toast.show();

4.完全自定義效果:

Android特效五種Toast詳解

代碼

LayoutInflater inflater = getLayoutInflater();

View layout = inflater.inflate(R.layout.custom,

(ViewGroup) findViewById(R.id.llToast));

ImageView image = (ImageView) layout

.findViewById(R.id.tvImageToast);

image.setImageResource(R.drawable.icon);

TextView title = (TextView) layout.findViewById(R.id.tvTitleToast);

title.setText("Attention");

TextView text = (TextView) layout.findViewById(R.id.tvTextToast);

text.setText("完全自定義Toast");

toast = new Toast(getApplicationContext());

小編推薦閱讀

好特網(wǎng)發(fā)布此文僅為傳遞信息,不代表好特網(wǎng)認(rèn)同期限觀點(diǎn)或證實(shí)其描述。

相關(guān)視頻攻略

更多

同類最新

更多

掃二維碼進(jìn)入好特網(wǎng)手機(jī)版本!

掃二維碼進(jìn)入好特網(wǎng)微信公眾號(hào)!

本站所有軟件,都由網(wǎng)友上傳,如有侵犯你的版權(quán),請(qǐng)發(fā)郵件[email protected]

湘ICP備2022002427號(hào)-10 湘公網(wǎng)安備:43070202000427號(hào)© 2013~2024 haote.com 好特網(wǎng)