Android: Disable highlighting in GridView

前端 未结 8 1311
囚心锁ツ
囚心锁ツ 2020-12-04 11:30

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.

相关标签:
8条回答
  • 2020-12-04 11:54

    Add this property to gridview

    android:listSelector="@android:color/transparent"
    
    0 讨论(0)
  • 2020-12-04 11:58

    Just set below property in your XML file.

    android:focusableInTouchMode="false"
    
    0 讨论(0)
提交回复
热议问题