Android: Disable highlighting in GridView
How can I turn off the orange highlight when clicking an item in a GridView? I haven't been able to find a solution in the documentation or through testing. Use android:listSelector="#00000000" in your GridView element in your XML layout file. Another option is to reference the transparent color via @android:color/transparent <?xml version="1.0" encoding="utf-8"?> <GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/grid" android:layout_width="fill_parent" android:layout_height="fill_parent" android:listSelector="@android:color/transparent" /> Matt I did the