3

Gallery 视图组件的典型应用类似于设置 ListView + ArrayAdapter 工作流。有没有办法通过 XML 以声明方式定义画廊来避免这种开销?

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

如果不是这种情况,需要什么才能工作?

4

1 回答 1

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>

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

于 2012-04-13T18:50:06.423 回答