res/values/strings.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">StudyDemo</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> </resources>
A:在代码中使用
myText.setText(getResources().getString(R.string.hello_world));
B:在布局文件中使用
android:text="@string/hello_world"原文链接:https://www.f2er.com/xml/298032.html