Android字符串在strings.xml文件的定义和使用

Posted infocodez

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android字符串在strings.xml文件的定义和使用相关的知识,希望对你有一定的参考价值。

  路径:res/values/strings.xml

  定义示例:

1 <resources>
2     <string name="app_name">SzLib</string>
3     <string name="address">广东省深圳市福田区福中一路2001号</string>
4     <string name="website">https://www.szlib.org.cn</string>
5     <string name="email">[email protected]</string>
6     <string name="phone_number">0755-82841212</string>
7 </resources>

  引用示例:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout
 3     xmlns:android="http://schemas.android.com/apk/res/android"
 4     xmlns:tools="http://schemas.android.com/tools"
 5     android:layout_width="match_parent"
 6     android:layout_height="match_parent"
 7     tools:context="com.example.administrator.szlib.MainActivity"
 8     android:orientation="vertical">
 9 
10 
11   <TextView
12         android:layout_width="wrap_content"
13         android:layout_height="wrap_content"
14         android:text="@string/phone_number"/>
15 
16 
17 </LinearLayout>

 

Android字符串资源及其格式化

Android中的字符串

 

以上是关于Android字符串在strings.xml文件的定义和使用的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio 对 strings.xml 文件进行排序以匹配

Android - 我啥时候应该在 Strings.xml 资源文件中转义 unicode?

Android应用程序的strings.xml文件中只能存放一些字符串常量信息。

使用 android:text="@string" 不会替换 strings.xml 文件中的字符串值

Android strings.xml 最佳实践? [关闭]

Android:将 Json 对象转换为 Strings.xml