Android 自定义 Toast

发布于 2024-07-24 05:59:41 字数 1057 浏览 12 评论 0

 

protected void toast(String message) {
       View toastRoot = LayoutInflater.from(context).inflate(R.layout.toast, null);
       Toast toast = new Toast(context);
       toast.setView(toastRoot);
       TextView tv = (TextView) toastRoot.findViewById(R.id.toast_notice);
       tv.setText(message);
       toast.show();
   }
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="wrap_content" android:layout_height="wrap_content"
              android:background="@drawable/toast_border">
    <TextView android:id="@+id/toast_notice"
              android:layout_width="wrap_content"
              android:layout_height="@dimen/toast_height"
              android:layout_gravity="center_vertical"
              android:gravity="center_vertical"
              android:textColor="@color/app_toast_text">
    </TextView>
</LinearLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

沫雨熙

暂无简介

0 文章
0 评论
22 人气
更多

推荐作者

lee_heart

文章 0 评论 0

往事如风

文章 0 评论 0

春风十里

文章 0 评论 0

纸短情长

文章 0 评论 0

qq_pdEUFz

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文