标签: android string
display.setText("@string/sport");
sport是一个在Strings.xml中声明的字符串函数但是在应用程序中它没有出现? 有什么想法吗?
答案 0 :(得分:1)
尝试:
display.setText(R.string.sport);
@resource/name引用仅适用于XML代码。使用Java时,格式为R.<type>.<name>。
@resource/name
R.<type>.<name>