android - How to disable highlight colour in ListView? -
even though question got asked million times before, still can't find solution.
here tried:
<style name="listviewnohighlight" parent="@android:style/widget.listview"> <item name="android:listselector">@android:color/transparent</item> <item name="android:cachecolorhint">@android:color/transparent</item> <item name="android:choicemode">none</item> </style>
then set in theme:
<item name="android:listviewstyle">@style/listviewnohighlight</item>
what works:
- while tapping, there no highlight.
what doesn't work:
- after tapping still annoying orange highlight colour.
this on android 5.1.0 nexus 6 genymotion emulator.
Comments
Post a Comment