突出显示Android中选定的GridView项目

时间:2013-12-06 19:53:12

标签: android gridview

我想在网格视图中突出显示所选项目。我将setMultiChoiceModeListener添加到我的GridView中,选择项目工作正常 但是在选择未突出显示的项目时,用户无法确定当前选择的项目 我尝试了android:state_activated="true"android:state_selected="true"android:state_checked="true",但没有任何作用。

这是我当前的选择器。

<selector xmlns:android="http://schemas.android.com/apk/res/android" android:exitFadeDuration="@android:integer/config_mediumAnimTime">
    <item android:state_pressed="true">
        <shape>
            <solid android:color="@color/grid_state_pressed" />
        </shape>
    </item>
    <item android:state_activated="true">
        <shape>
            <solid android:color="@color/grid_state_active" />
        </shape>
    </item>
    <item android:drawable="@android:color/transparent" />
</selector>

按下状态正在运行,但我不知道为什么没有突出显示所选项目。 我还需要添加其他内容吗?

1 个答案:

答案 0 :(得分:-1)

我遇到了完全相同的问题。虽然setActivated(true),但Android中似乎存在一个错误。在特定网格项视图上调用方法,后台选择器不更新viewDrawableState。

我通过覆盖网格项视图的根容器上的setActivated方法来修复该问题。

public class GridLinearLayout extends LinearLayout {

    public GridLinearLayout(Context context) {
        super(context);
    }

    public GridLinearLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public GridLinearLayout(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public void setActivated(boolean activated) {
        super.setActivated(activated);

        if(activated) {
            setBackgroundResource(R.color.grid_state_pressed);
        } else {
            setBackgroundResource(R.drawable.grid_state_selector);
        }
    }
}