android-如何在类文件中为textview提供textcolor

android-如何在类文件中为textview提供textcolor,第1张

概述我正在创建自定义textview,我想给此textview提供黑色textcolor.我如何设置textcolor.我的代码是TextViewtextview=新的TextView(this);textview.setText(“请遵循以下描述”);setContentView(_textview);当我使用textview.setTextColor(Integer.parseInt(“#000000”))提前

我正在创建自定义textvIEw,我想给此textvIEw提供黑色textcolor.我如何设置textcolor.我的代码是

TextVIEw textvIEw =新的TextVIEw(this);

textvIEw.setText(“请遵循以下描述”);

setContentVIEw(_textvIEw);

当我使用textvIEw.setTextcolor(Integer.parseInt(“#000000”))

提前致谢

解决方法:

使用color.parsecolor():

textvIEw.setTextcolor(color.parsecolor("#000000"));

另一种选择是直接使用十六进制整数:

textvIEw.setTextcolor(0xff000000);
总结

以上是内存溢出为你收集整理的android-如何在类文件中为textview提供textcolor全部内容,希望文章能够帮你解决android-如何在类文件中为textview提供textcolor所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存