如何更改android中的默认吐司消息颜色和背景颜色?

如何更改android中的默认吐司消息颜色和背景颜色?,第1张

概述我想创建一个背景颜色为白色且消息颜色为黑色的Toast消息.我的祝酒词是:Toast.makeText(Logpage.this,"PleaseGiveFeedback...",3000).show();我想用另一种不在onCreate()中的方法创建它.解决方法:您可以创建如下的自定义Toast消息:Toasttoast=newToast(context);toas

我想创建一个背景颜色为白色且消息颜色为黑色的Toast消息.我的祝酒词是:

Toast.makeText(Logpage.this, "Please Give Feedback...", 3000).show();

我想用另一种不在onCreate()中的方法创建它.

解决方法:

您可以创建如下的自定义Toast消息:

Toast toast = new Toast(context);toast.setDuration(Toast.LENGTH_LONG);LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); VIEw vIEw = inflater.inflate(R.layout.your_custom_layout, null);toast.setVIEw(vIEw);toast.show();

您可以将一个textvIEw放在布局文件中,并根据需要提供背景和文本颜色.

您还可以执行以下 *** 作,不需要额外的自定义布局文件:

Toast toast = Toast.makeText(context, R.string.string_message_ID, Toast.LENGTH_LONG);VIEw vIEw = toast.getVIEw();vIEw.setBackgroundResource(R.drawable.custom_background);TextVIEw text = (TextVIEw) vIEw.findVIEwByID(androID.R.ID.message);/*Here you can do anything with above textvIEw like text.setTextcolor(color.parsecolor("#000000"));*/toast.show();
总结

以上是内存溢出为你收集整理的如何更改android中的默认吐司消息颜色和背景颜色?全部内容,希望文章能够帮你解决如何更改android中的默认吐司消息颜色和背景颜色?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1098621.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存