2

目前在我的 Android 应用程序中,我有一个 GridView,它使用自定义适配器来填充多个自定义视图。

这个 GridView 定义如下:

<GridView
 android:id="@+id/grid"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:drawSelectorOnTop="false"
 android:isScrollContainer="false"
 android:listSelector="@drawable/selector"
 android:numColumns="3"
 android:stretchMode="columnWidth" />

如您所见,我定义了一个自定义“列表选择器”,允许用户查看他们选择的网格视图的哪些项目。

我想知道的是,当使用自定义适配器创建网格视图时,列表选择器是否可以设置为默认值并可见?(目前列表选择器仅在用户做出选择后才会出现 -显然)。

自定义 GridView 适配器是一个简单的适配器,它扩展了BaseAdapter.

非常感谢

4

0 回答 0