gpt4 book ai didi

android - 为 textView Android 设置文本颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:17:26 24 4
gpt4 key购买 nike

在 string.xml 文件中我使用了下面的标签

 <string name="CodeColor" >"#0000ff"</string>

如果我用

 textview1.setTextColor(Color.RED);

它可以工作,但是当我使用

  textview1.setTextColor(TextViewStyles.this.getResources().getColor(R.string.CodeColor)); 

or
textview1.setTextColor(R.string.CodeColor);

它不起作用。任何建议...

提前致谢

最佳答案

您需要在您的 xml 中创建一组样式(通常在 res/values/styles.xml 中)

<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="gray">#eaeaea</color>
<color name="titlebackgroundcolor">#00abd7</color>
<color name="titlecolor">#666666</color>
<resources>

在布局文件中,您可以调用颜色或样式:

android:textColor="@color/titlecolor"

检查一些例子:

http://developer.android.com/guide/topics/ui/themes.html

关于android - 为 textView Android 设置文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12524920/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com