У меня есть собственное уведомление о тосте, в котором есть изображение и текст.Пользовательский тост работает нормально, но мне интересно, как заставить мой собственный тост наследовать внешний вид тостов по умолчанию?Я хочу, чтобы он выглядел по умолчанию с красивыми закругленными углами и границами.
Так выглядит мой собственный тост.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:background="#DAAA">
<ImageView android:id="@+id/chatIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:src="@drawable/ic_chat"/>
<TextView android:id="@+id/text"
android:text="@string/unread_message_toast"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textColor="#FFF"
/>
</LinearLayout>