在新建好的Android项目里res目录下有个字符串资源文件
string.xml
<resources>
<string name="motto">未闻花名,但识花香。再见花识类已千行</string>
</resources>
activity_main.xml
<TextView
android:id="@+id/motto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/motto"/>
MainActivity.java
TextView tv_motto = findViewById(R.id.motto);
tv_motto.setText(getResources().getString(R.string.motto));
原文:https://www.cnblogs.com/lzpq/p/12828566.html