gpt4 book ai didi

Android:自定义Toast通知继承默认Toast

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:28:16 25 4
gpt4 key购买 nike

我有一个包含图像和文本的自定义 Toast 通知。自定义 toast 工作正常,但我想知道如何让我的自定义 toast 继承默认的 toast 外观和感觉?我希望它看起来像默认的一样,带有漂亮的圆角和边框。

这是我的自定义 toast 的样子。

<?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>

最佳答案

我在我的一个应用程序中使用它。改变一些周围的东西,它应该也适合你。

Toast ImageToast = new Toast(getBaseContext());
LinearLayout toastLayout = new LinearLayout(
getBaseContext());
toastLayout.setOrientation(LinearLayout.HORIZONTAL);
ImageView image = new ImageView(getBaseContext());
image.setImageResource(R.drawable.easter_egg);
toastLayout.addView(image);
ImageToast.setView(toastLayout);
ImageToast.setDuration(Toast.LENGTH_SHORT);
ImageToast.show();

关于Android:自定义Toast通知继承默认Toast,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8686398/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com