I have a question for You !
I have 50 items in my spinner, can I disabled for example sixth item in my list ?
You can get the item from the array in your ListAdapter based on its position and call setEnabled(false)
in the public getView()
method.
Like this:
if (position==10) {
convertView.setEnabled(false);
}
else{
convertView.setEnabled(true);
}
You will probably need to override some other methods. Check those posts:
Android ListView child View setEnabled() and setClickable() do nothing
Android: How to disable list items on list creation
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