1. ホーム
  2. android

[解決済み] Androidでのカスタムトースト:簡単な例

2022-06-28 09:57:54

質問

Androidプログラミングの初心者です。Androidでカスタムトーストの通知を表示する簡単な例を教えてください。

どのように解決するのですか?

以下のカスタム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" />

</LinearLayout>

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();

また、カスタムトーストについては、以下のリンク先をご覧ください。

カスタムトースト(アナログ時計付き

YouTubeで紹介されています。Android Studioでボタンを使ったカスタムトーストを作る