如何改變toast.maketext的位置

小樊
107
2024-06-28 18:16:27

要改變Toast.makeText的位置,您可以通過(guò)創(chuàng)建一個(gè)自定義Toast布局來(lái)實(shí)現(xiàn)。以下是如何實(shí)現(xiàn)這一點(diǎn)的步驟:

  1. 創(chuàng)建一個(gè)自定義的Toast布局文件,命名為custom_toast.xml,其中包含您想要顯示的內(nèi)容,例如一個(gè)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布局文件,并通過(guò)setView方法將其設(shè)置為T(mén)oast的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方法來(lái)指定Toast顯示的位置。
toast.setGravity(Gravity.TOP|Gravity.START, 0, 0);

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

0