1
使用Android的資源系統,你可以定義一個字符串數組是這樣的:如何在XML中將布爾數組定義爲資源?
<string-array name="my_string_array">
<item>One</item>
<item>Two</item>
<item>Three</item>
<item>Four</item>
</string-array>
和整數數組是這樣的:
<integer-array name="my_integer_array">
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
</integer-array>
你如何定義一個布爾數組?