How can I disable the focus from an Item in a ListView
when I click on it, so that there is no focus on click?
Here is your answer for disabling the focus of ListView. Override isEnabled(int position) method in your Adapter and return false.
@Override
public boolean isEnabled(int position) {
return false;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With