2010年4月8日星期四

字符串資源(String Resources)

字符串資源(String Resources)是其中一種最簡單的資源; 它可以是一個定義為資源的簡單字符串, 也可以是一個格式化的字符串. 來看看這裡的例子:



要使用XML文件定義字符串資源, 該XML文件需要放置在/res/values/文件夾下面, 可以使用任意的文件名.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="simple_string">simple string</string>
<string name="formatted_string">It's <b><i>BOLD string</i></b>!</string>
</resources>


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"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/simple_string"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/formatted_string"
/>
</LinearLayout>

沒有留言:

發佈留言