strings.xml使用方法

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

方法一:

就是去values文件夹下的stings.xml中去添加

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">SMSTest</string>
    <string name="action_settings">Settings</string>
    <string name="hello_world">Hello world!</string>

</resources>

方法二:

点击某个控件,然后它在右下角的Properties属性中有Text属性,然后点击那三个小点点的按钮出现Resource Chooser框,然后可以New String:




方法三:

快捷键:ctrl+1:来将text中的文字设置为String串保存。



使用方法

<Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/text_bt1" />
原文链接:https://www.f2er.com/xml/295960.html

猜你在找的XML相关文章