Toast 消息文本对齐开箱即用

Toast message text alignment out of box

我正在显示来自 asynctask onpostexecute 的 toast 消息,但它显示不正确,如下图所示。 任何人都可以帮助我。

Toast.makeText(mContext, "Stamp Added Successfully", Toast.LENGTH_LONG).show();

您可以创建自定义吐司消息。 按照下面的 link.

请看这个Link See more from here 复制自此 link。

toast.xml

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:background="#DAAA" >

<ImageView android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_marginRight="10dp" />

<TextView android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:textColor="#FFF" />

MainActivity.java

LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_layout,
                           (ViewGroup) findViewById(R.id.toast_layout_root));

ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.android);
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Hello! This is a custom toast!");

Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout); 
toast.show();