0

我有一个带有透明行的gridview。在选择一行时,该行将突出显示为浅蓝色。这一切都很好。

现在我想为gridview添加不同的颜色,即。绿色和红色。这表示不同的类别。我设法设置了行的背景。但是现在当单击红色或绿色行时,gridview 列表选择器不起作用。

我的网格视图:

<GridView>
    android:id="@+id/gridView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:listSelector="#23fdfa"
    android:scrollbars="vertical|horizontal"
    android:stretchMode="columnWidth" >              
</GridView>

绿色行:

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >   
   <stroke android:width="1dip" android:color="#4fa5d5"/>   
   <gradient android:startColor="#00FD0D" android:endColor="#00FD0D"/>  
</shape>

红色行:

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >

   <stroke android:width="1dip" android:color="#4fa5d5"/>
   <gradient android:startColor="#FF4A59" android:endColor="#FF4A59"/>

</shape>

将项目添加到网格视图时,红色和绿色行会很好地填充。

4

1 回答 1

1

我已将此行添加到我的 GridView : android:drawSelectorOnTop="true"

于 2014-07-15T09:10:15.787 回答