我正在创建自定义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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)