I'm trying to disable the highlighting of objects in a GridView in Android 2.2.
I found this other answer saying that I should set the selector to a transparent ColorDrawable (android:listSelector="@android:color/transparent"
), but the views in my GridView are still dimmed when I select them.
I'm just using the GridView to display static objects in a grid. None of these objects will be selected. Would it be better to just use a basic view and draw my images manually?