You can remove or replace the list selector with the android:listSelector
. The default list selector in the Material section is ?android:attr/selectableItemBackground
, which is limited ripple.
<ListView ... android:listSelector="@drawable/my_list_selector" />
To completely disable the selector, you can use the value @null
or @android:color/transparent
(better for some versions of Android) as follows:
<ListView ... android:listSelector="@android:color/transparent" />
alanv source share