SoFunction
Updated on 2025-04-04

How to cancel the click effect of listview in Android

There is a listselecter attribute reference in the xml file

 <ListView 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
android:listSelector="@android:color/transparent">
</ListView>

After quoting transparent, the click effect will be transparent. It took a long time yesterday to make it out and record it.

PS: Remove or replace the color of the listview when clicked on the default click

1. Remove the default color when clicking

(1) Set the backgroudcolor property of the list layout and it will be OK.

(2)

Android:focusable="false" android:focusableInTouchMode="false"
  android:cacheColorHint="#00000000" android:listSelector="#00000000"

2. Replace the default color when clicked

Just set the listSelector property of listivew.