要改變Toast.makeText的位置,您可以通過(guò)創(chuàng)建一個(gè)自定義Toast布局來(lái)實(shí)現(xiàn)。以下是如何實(shí)現(xiàn)這一點(diǎn)的步驟:
<?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>
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();
toast.setGravity(Gravity.TOP|Gravity.START, 0, 0);
通過(guò)這些步驟,您可以自定義Toast的布局并改變其顯示的位置。