我有一个 Dashboard.java 文件,我在其中使用在 R.java 自动生成的文件中解析的 strings.xml。
当我尝试这样做时:
public String BASE_URL = R.string.BASE_URL;
自然会告诉Cannot convert from int to String。
但这就是从 string.xml 中选择用于翻译的内容。
有没有解决的办法?
谢谢
用这个
String BASE_URL = getResources().getString(R.string.BASE_URL);
或者您可以从下面的代码中复制:
getResources().getString(R.string.BASE_URL);
Resources res = getResources();
String url = res.getString(R.string.hello_world);
EditText et=(EditText)findViewById(R.id.editText1);
et.setText(url);