Skip to content Skip to sidebar Skip to footer

Android Spinner Custom Text View Not Clickable

Why does using a custom text view prevent the Spinner text & items (yet not the arrow) from being clickable and yet this isn't the case with Android-prvoided Spinner text layou

Solution 1:

Remove these two lines:

android:clickable="true"android:focusable="true"

Your code works fine.

Post a Comment for "Android Spinner Custom Text View Not Clickable"