如何在XML中将布尔数组定义为资源?

时间:2013-01-11 17:21:51

标签: android arrays boolean android-xml typed-arrays

使用Android的资源系统,您可以像这样定义一个字符串数组:

<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>

如何定义布尔数组?

1 个答案:

答案 0 :(得分:5)

我相信布尔数组没有内置类型。您可以使用类型化数组,请参阅http://developer.android.com/guide/topics/resources/more-resources.html。如果没有,你可以通过ints实现一个好的旧C路 - 0是假的,非零是真的。