码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-11-04 16:32:09      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:lin   line   out   resource   div   深圳市   mail   enc   dmi   

  路径: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">reference@szlib.org.cn</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文件的定义和使用

标签:lin   line   out   resource   div   深圳市   mail   enc   dmi   

原文地址:http://www.cnblogs.com/infocodez/p/7783224.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!