私は画像とテキストを持つカスタムトースト通知を持っています。カスタムトーストはうまく動作しますが、私は自分のカスタムトーストをデフォルトトーストのルックアンドフィールを継承させるためにどのようにしたらいいですか?私はそれが良い丸い角と境界線を持つデフォルトのもののように見えるようにします。Android:カスタムトースト通知デフォルトトーストを継承
これは私のカスタムトーストの外観です。
<?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>
素晴らしいことです!非常に柔軟です。これは、レイアウトXMLを追加したり要素のIDを管理したりせずに再利用できます。以前はインフレータの方法を使っていましたが、再利用はそれほど簡単ではありませんでした。 +1 – iozee
これはもう動作しないようです。例外をスローします:java.lang.RuntimeException:このToastはToast.makeText()で作成されていません – Silmarilos