亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

android Toast大全(五種情形)建立屬于你自己的Toast

小云
107
2023-09-23 08:30:46
欄目: 編程語言

在Android開發中,Toast是一種簡單的彈出提示,用于向用戶顯示臨時的消息。下面是五種情形的Toast使用示例:

  1. 普通Toast:
Toast.makeText(getApplicationContext(), "普通Toast", Toast.LENGTH_SHORT).show();
  1. 帶有圖標的Toast:
Toast toast = Toast.makeText(getApplicationContext(), "帶有圖標的Toast", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER, 0, 0);
LinearLayout toastLayout = (LinearLayout) toast.getView();
ImageView imageView = new ImageView(getApplicationContext());
imageView.setImageResource(R.drawable.ic_icon);
toastLayout.addView(imageView, 0);
toast.show();
  1. 自定義布局的Toast:

首先,創建一個自定義的布局文件toast_custom.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:gravity="center"
android:orientation="horizontal"
android:padding="20dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_icon" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"
android:text="自定義布局的Toast" />
</LinearLayout>

然后,在代碼中使用自定義布局的Toast:

LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_custom,
(ViewGroup) findViewById(R.id.toast_custom_layout));
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_SHORT);
toast.setView(layout);
toast.show();
  1. 長時間顯示的Toast:
Toast.makeText(getApplicationContext(), "長時間顯示的Toast", Toast.LENGTH_LONG).show();
  1. 位置偏移的Toast:
Toast toast = Toast.makeText(getApplicationContext(), "位置偏移的Toast", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.TOP|Gravity.LEFT, 100, 100);
toast.show();

除了以上的五種情形,你還可以根據自己的需求進行更多的擴展和定制,例如改變Toast的字體樣式、背景顏色等。通過自定義Toast,你可以根據自己的喜好和應用的風格創建屬于自己的Toast。

0
沅陵县| 壤塘县| 辽阳县| 建瓯市| 鄢陵县| 建始县| 株洲市| 鹰潭市| 九龙城区| 眉山市| 潍坊市| 九江市| 南投市| 府谷县| 安达市| 龙山县| 朝阳区| 阳信县| 喜德县| 台湾省| 云龙县| 都兰县| 鄂托克前旗| 信宜市| 襄樊市| 长兴县| 山东省| 定安县| 鸡泽县| 丰台区| 呈贡县| 广安市| 醴陵市| 新巴尔虎右旗| 淮北市| 延边| 治多县| 广丰县| 丰镇市| 织金县| 延庆县|