看了一下,String的定义,一般包括三个:
单个的String字符串,
XML file saved at res/values/strings.xml
:
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello!</string> </resources>
This layout XML applies a string to a View:
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" />
This application code retrieves a string:
String string = getString
(R.string.hello);
You can use either getString(int)
or getText(int)
to retrieve a string.getText(int)
will retain any rich text styling applied to the string.
String 数组
XML file saved at res/values/strings.xml
:
<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="planets_array"> <item>Mercury</item> <item>Venus</item> <item>Earth</item> <item>Mars</item> </string-array> </resources>
This application code retrieves a string array:
Resources res =getResources()
; String[] planets = res.getStringArray
(R.array.planets_array);
复数使用,这个比较复杂,根据语言不同,各种不同,用的到时候好好学习。
另外还讲了String的格式化,包括 单双引号的显示已经format的格式,甚至包括html格式的显示,都有非常好的支持,到时候用的时候好好学吧。