6

I have a question for You !

I have 50 items in my spinner, can I disabled for example sixth item in my list ?

Dawid Sajdak
  • 3,064
  • 2
  • 23
  • 37

1 Answers1

7

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

Community
  • 1
  • 1
iDroid
  • 10,403
  • 1
  • 19
  • 27