Android: Disable highlighting in GridView

android, click, gridview, highlighting

Solution

Use `android:listSelector="#00000000"` in your `GridView` element in your XML layout file.

Problem

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.

Original source

Related problems