在strings.xml中更改颜色

时间:2013-10-28 08:33:51

标签: android

我是android的新手,想知道如何在字符串标记中更改strings.xml文件中的字体颜色。

例如我有:

  <string name="hello_world">Hello world!</string>

我只是希望它显示为红色和蓝色

感谢名单

12 个答案:

答案 0 :(得分:69)

试试这个

红色,

<string name="hello_worldRed"><![CDATA[<b><font color=#FF0000>Hello world!</font></b>]]></string>

对于蓝色,

<string name="hello_worldBlue"><![CDATA[<b><font color=#0000FF>Hello world!</font></b>]]></string>

在java代码中,

//red color text
TextView redColorTextView = (TextView)findViewById(R.id.redText);
String redString = getResources().getString(R.string.hello_worldRed)
redColorTextView.setText(Html.fromHtml(redString));

//Blue color text
TextView blueColorTextView = (TextView)findViewById(R.id.blueText);
String blueString = getResources().getString(R.string.hello_worldBlue)
blueColorTextView.setText(Html.fromHtml(blueString));

答案 1 :(得分:26)

对于那些想直接在String.xml中添加颜色并且不想使用颜色的人......

例如

<string name="status_stop"><font fgcolor='#FF8E8E93'>Stopped</font></string> <!--gray-->
<string name="status_running"><font fgcolor='#FF4CD964'>Running</font></string> <!--red-->
<string name="status_error"><font fgcolor='#FFFF3B30'>Error</font></string> <!--green-->

如你所见,有灰色,红色和绿色,有8个字符,前两个用于透明,另一个用于颜色。

实施例

This a description of color and transparency
#   FF               FF3B30    
    Opacity          Color
  

注意: 将颜色放入同一string.xml中的文本中将无法在Android 6.0及更高版本中使用

不透明度表

100% — FF
99% — FC
98% — FA
97% — F7
96% — F5
95% — F2
94% — F0
93% — ED
92% — EB
91% — E8
90% — E6
89% — E3
88% — E0
87% — DE
86% — DB
85% — D9
84% — D6
83% — D4
82% — D1
81% — CF
80% — CC
79% — C9
78% — C7
77% — C4
76% — C2
75% — BF
74% — BD
73% — BA
72% — B8
71% — B5
70% — B3
69% — B0
68% — AD
67% — AB
66% — A8
65% — A6
64% — A3
63% — A1
62% — 9E
61% — 9C
60% — 99
59% — 96
58% — 94
57% — 91
56% — 8F
55% — 8C
54% — 8A
53% — 87
52% — 85
51% — 82
50% — 80
49% — 7D
48% — 7A
47% — 78
46% — 75
45% — 73
44% — 70
43% — 6E
42% — 6B
41% — 69
40% — 66
39% — 63
38% — 61
37% — 5E
36% — 5C
35% — 59
34% — 57
33% — 54
32% — 52
31% — 4F
30% — 4D
29% — 4A
28% — 47
27% — 45
26% — 42
25% — 40
24% — 3D
23% — 3B
22% — 38
21% — 36
20% — 33
19% — 30
18% — 2E
17% — 2B
16% — 29
15% — 26
14% — 24
13% — 21
12% — 1F
11% — 1C
10% — 1A
9% — 17
8% — 14
7% — 12
6% — 0F
5% — 0D
4% — 0A
3% — 08
2% — 05
1% — 03
0% — 00

参考:Understanding colors in Android (6 characters)

更新:10 / OCT / 2016

此功能兼容所有版本的android,我没有在android 7.0中测试过。使用此功能获取颜色并在textview中设置

示例格式化文件字符串和颜色中的xml

<!-- /res/values/strings.xml -->
<string name="status_stop">Stopped</string>
<string name="status_running">Running</string>
<string name="status_error">Error</string>

<!-- /res/values/colors.xml -->
<color name="status_stop">#8E8E93</color>
<color name="status_running">#4CD964</color>
<color name="status_error">#FF3B30</color>

通过验证android 6.0及以上版本从xml获取颜色的功能

public static int getColorWrapper(Context context, int id) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {//if actual version is >= 6.0
            return context.getColor(id);
        } else {
            //noinspection deprecation
            return context.getResources().getColor(id);
        }
    }

示例:

TextView status = (TextView)findViewById(R.id.tvstatus);
status.setTextColor(getColorWrapper(myactivity.this,R.color.status_stop));

参考:getColor(int id) deprecated on Android 6.0 Marshmallow (API 23)

答案 2 :(得分:18)

如果您想在strings.xml文件中支持文字格式化,则必须转义代码 - 或使用 CDATA 部分。否则Android在阅读资源文件时忽略它们。

e.g

<string name="hello_world">
<![CDATA[
<p>This is a html-formatted string with <b>bold</b> and <i>italic</i> text</p>
<p>This is another paragraph of the same string.</p>
]]>
</string>

String styledText = "This is <font color='red'>simple</font>.";
textView.setText(Html.fromHtml(styledText), TextView.BufferType.SPANNABLE);

答案 3 :(得分:13)

我会使用SpannableString来改变颜色。

int colorBlue = getResources().getColor(R.color.blue);
    String text = getString(R.string.text);
    SpannableString spannable = new SpannableString(text);
    // here we set the color
    spannable.setSpan(new ForegroundColorSpan(colorBlue), 0, text.length(), 0);

您可以尝试this

答案 4 :(得分:13)

只需在字体标记之间添加文字:

表示蓝色

<string name="hello_world"><font color='blue'>Hello world!</font></string>

或红色

<string name="hello_world"><font color='red'>Hello world!</font></string>

答案 5 :(得分:9)

<string name="hello_world"><font fgcolor="red">Hello</font>
    </font fgcolor="blue">world!</font></string>

但请注意,这仅适用于相对较短的内置颜色列表:浅绿色,黑色,蓝色,紫红色,绿色,灰色,石灰色,栗色,海军蓝,橄榄色,紫色,红色,银色,蓝绿色,白色,和黄色。有关使用任意颜色执行此操作的方法,请参阅https://stackoverflow.com/a/31655150/338479

答案 6 :(得分:7)

如果您想更改string.xml文件中的字体颜色,可以尝试以下代码。

<resources>
   <string name="hello_world"><font fgcolor="#ffff0000">Hello world!</font></string>
</resources>

答案 7 :(得分:3)

你没有。 strings.xml就在这里定义原始文本消息。您应该(必须)使用styles.xml来定义可重用的视觉样式以应用于您的小部件。

将其视为分离问题的良好做法。您可以独立于文本消息处理视觉样式。

答案 8 :(得分:1)

您不在strings.xml类型的文件中设置此类属性。您需要在代码中设置它。或者(这是更好的解决方案)使用您想要的颜色创建样式并应用于TextView

答案 9 :(得分:1)

对于那些来这里是为了在 2021 年在 google 中搜索答案的人 就用

<string name="hello_world"><font color="#your_color_in_hexa"> Hello</font> world!</string>

以上代码将为文本的“Hello”部分着色

答案 10 :(得分:0)

以下列方式使用CDATA格式化文本

<resources>
<string name="app_name">DemoShareActionButton</string>
<string name="intro_message">
    <b>
    <![CDATA[ This sample shows you how a provide a context-sensitive ShareActionProvider.
    ]]>
    </b>
    </string>

只需在<![CDATA[之前添加您想要的任何标记,即可获得正确的输出。

答案 11 :(得分:0)

这是在一个字符串中添加多种颜色的最简单也是最好的方法。

<string name="color_as">Any Text<font fgcolor='#FF0000'> *Text 1* </font><font fgcolor='#ffc821'> *Text 2 * </font></string>