其他分享
首页 > 其他分享> > android-如何在类文件中为textview提供textcolor

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

作者:互联网

我正在创建自定义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);

标签:custom-controls,android
来源: https://codeday.me/bug/20191105/1998235.html