要改变Toast.makeText的位置,您可以通过创建一个自定义Toast布局来实现。以下是如何实现这一点的步骤:
<?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);
通过这些步骤,您可以自定义Toast的布局并改变其显示的位置。