1

我正在我的应用程序中使用 ListViews 和 GridView。我为 GridView 使用了自定义适配器,但没有为列表使用。

在此处输入图像描述

如您所见,当我单击它时,它会自动更改元素的背景。但在 GridView 中发生的情况并不相同。我必须手动完成吗?我想为用户提供一些反馈,典型的边框或类似的东西。我也上传了gridview截图。

在此处输入图像描述

网格视图 XML。

<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnWidth="100dp"
android:drawSelectorOnTop="true"
android:gravity="center"
android:horizontalSpacing="10dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="10dp" >

现在 GridView 适配器的 getView() 部分:

@Override
public View getView(int position, View convertView, ViewGroup parent) {

    View layout=convertView;
    ViewHolder holder = null;
    GridCrop gridElement;

    if (layout == null) {
        LayoutInflater inflater = LayoutInflater.from(parent.getContext());
        layout=inflater.inflate(R.layout.crop_grid_element,null);
        holder = new ViewHolder();
        holder.image = (ImageView) layout.findViewById(R.id.cropImage);
        holder.text = (TextView) layout.findViewById(R.id.imageTitle);
        layout.setTag(holder);
    } else {
        holder = (ViewHolder) layout.getTag();
    }

    gridElement=list.get(position);
    holder.image.setImageResource(gridElement.getImage());
    holder.text.setText(gridElement.getTitle());
    return layout;
}

class ViewHolder {
    ImageView image;
    TextView text;
}
4

4 回答 4

2

尝试grid.setDrawSelectorOnTop(true);在您的 GridView 上使用,您当前的选择器可能是在适配器的非透明视图下绘制的。

于 2013-10-03T13:05:49.787 回答
1

在GridView XML中添加这一行。

android:listSelector="#00343434"
于 2013-10-03T13:03:10.963 回答
0

实际上,您必须直接在单元格主布局的背景中使用 Selector:

例子 :

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@color/clr_main_green_pressed" android:state_selected="true" android:state_window_focused="false"/>
    <item android:drawable="@color/clr_main_green_pressed" android:state_selected="true"/>
    <item android:drawable="@color/clr_main_green_pressed" android:state_pressed="true" android:state_selected="false"/>
    <item android:drawable="@android:color/transparent" android:state_selected="false"/>

</selector>
于 2013-10-03T13:02:56.763 回答
0

我已经在stackoverflow中阅读了XML中的listSelector属性......我试过但没有用......直到我尝试了另一种颜色。所以答案是在xml中添加到GridView中:

android:listSelector="@color/Aqua" 或其他。

<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnWidth="100dp"
android:drawSelectorOnTop="true"
android:gravity="center"
android:horizontalSpacing="10dp"
android:listSelector="@color/Aqua"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="10dp" >

于 2013-10-03T13:03:22.560 回答