strings.xml

前端之家收集整理的这篇文章主要介绍了strings.xml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的XML相关文章