如何通过XML在Gallery中定义子视图

时间:2012-04-13 17:25:41

标签: android

Gallery视图组件的典型应用类似于设置ListView + ArrayAdapter工作流。有没有办法通过XML声明性地定义Gallery来支持这一开销?

<Gallery>
    <TextView text="Screen 1 - Swipe to Next screen"/>
    <TextView text="Screen 2 - Swipe to Prev screen"/>
</Gallery>

如果不是这样,那么工作需要什么?

1 个答案:

答案 0 :(得分:3)

您不能像在代码中那样直接在布局xml文件中定义AdapterView(Galler,Spinner,ListView,...)的子视图。

但是,有一种方法可以避免使用适配器。但它的可用性有限。您可以使用android:entries属性。

<Gallery
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:entries="@array/my_items" >
</Gallery>

将对数组资源的引用作为属性的值。

<string-array name="my_items">
        <item>text1</item>
        <item>text2</item>
        <item>...</item>
</string-array>

图库将填充数组中的文本。 我想你只能使用文本来填充图库(或任何其他AdapterView),它不适用于更复杂的视图。您必须使用适配器为Gallery填充更复杂的项目。