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

溫馨提示×

如何改變toast.maketext的位置

小樊
89
2024-06-28 18:16:27
欄目: 編程語言

要改變Toast.makeText的位置,您可以通過創建一個自定義Toast布局來實現。以下是如何實現這一點的步驟:

  1. 創建一個自定義的Toast布局文件,命名為custom_toast.xml,其中包含您想要顯示的內容,例如一個TextView。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="16dp"
    android:background="#FF4081"
    android:padding="16dp">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Custom Toast"
        android:textColor="#FFFFFF"
        android:textSize="16sp" />

</LinearLayout>
  1. 在您的Activity中,使用LayoutInflater加載自定義的Toast布局文件,并通過setView方法將其設置為Toast的View。
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.custom_toast,
    findViewById(R.id.custom_toast_container));

Toast toast = new Toast(getApplicationContext());
toast.setDuration(Toast.LENGTH_SHORT);
toast.setView(layout);
toast.show();
  1. 如果您想要更改Toast的位置,可以使用setGravity方法來指定Toast顯示的位置。
toast.setGravity(Gravity.TOP|Gravity.START, 0, 0);

通過這些步驟,您可以自定義Toast的布局并改變其顯示的位置。

0
和林格尔县| 长治市| 富顺县| 固原市| 凤城市| 丹阳市| 石阡县| 衡南县| 平南县| 平陆县| 黄龙县| 水城县| 同德县| 建德市| 广河县| 舒城县| 正定县| 綦江县| 宿松县| 洱源县| 连江县| 孟连| 十堰市| 旌德县| 唐海县| 阜南县| 海伦市| 吐鲁番市| 延寿县| 巴彦县| 出国| 基隆市| 公主岭市| 昔阳县| 陆良县| 长垣县| 阳新县| 锦州市| 措勤县| 巫溪县| 安国市|