Can't you stop the highlight when you click on the list view?

Asked 2 years ago, Updated 2 years ago, 119 views

I want to turn off the orange highlight when I click a row in the list view

android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false"

I tried it like this, but it didn't work. I hope there's no change even if I click it, what should I do?

android highlighting android-listview

2022-09-21 20:28

1 Answers

In layout xml

android:listSelector="@android:color/transparent"

Please enter the listSelector property. If the problem persists, try putting the ColorStateList in TextView. http://developer.android.com/intl/ko/guide/topics/resources/color-list-resource.html


2022-09-21 20:28

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.