像AppMsg一样在布局上显示自定义吐司

时间:2016-11-22 06:31:27

标签: android toast

我想在布局的顶部显示自定义Toast消息,例如,当“没有Internet连接”时。为此,我使用AppMsg library from here.

但是这个库几乎没有问题,就像它一直在显示消息。我需要相同类型的实现。

有人请建议吗?

1 个答案:

答案 0 :(得分:0)

您可以像这样自定义Toastview,

            LayoutInflater inflater = getLayoutInflater();
            View toastLayout = inflater.inflate(R.layout.custom_toast, (ViewGroup) findViewById(R.id.custom_toast_layout));
            Toast toast = new Toast(getApplicationContext());
            toast.setDuration(Toast.LENGTH_LONG);
            toast.setView(toastLayout);
            toast.show();

custom_toast布局,

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"

tools:context=".MainActivity">

<TextView
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Custom Android Toast View Example" />

<Button
    android:id="@+id/show_custom_toast"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView"
    android:text="Show Custom Toast" />
</RelativeLayout>