Android gridview keep item selected
I think a better approach is to tell the GridView that you wish to support selecting (checking) the items: gridView.setChoiceMode(GridView.CHOICE_MODE_MULTIPLE); and then make sure that items in GridView implement Checkable interface. That means that the items can be either Checkbox, ToggleButton and so on or you can add the Checkable support yourself – for example … Read more