Android中String的处理
1、在Android中显示的字符串,最好放到values/strings.xml文件中,这样的话,易于管理
2、在values/strings.xml中得到的字符串,可以格式化后显示到界面上
实例代码:
main.xml布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<Button android:id="@+id/format" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/btn_name"></Button>
<EditText android:id="@+id/name" android:layout_width="fill_parent"
android:layout_height="wrap_content"></EditText>
</LinearLayout>
<TextView android:id="@+id/result" android:layout_width="fill_parent"
android:layout_height="wrap_content"></TextView>
</LinearLayout>
values/strings.xml文件
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">StringsDemo</string>
<string name="btn_name">Name:</string>
<string name="funky_format">My name is <b>%1$s</b></string>
</resources>
java代码