strings.xml中的字符串在Android中引起问题

时间:2011-03-15 16:35:16

标签: java android

我该怎么办?我想提供多语言版本,但为此我需要strings.xml中的每个字符串...使用Context.getString它因静态类/方法中的非静态方法而无效。

Acces to the String

Can't acces because of int

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

哦,我明白你要做什么了。

R.string.blah只是一个int引用。

获取您需要执行的实际字符串

Context.getResources().getString(R.string.blah);

Get String Resource