Reputation: 47
I am very new to android.I have set spinner SetOnItemSelected Listener. Is there any possibilities to cancel spinner OnItemSelectedListener from another method. Thanks in advance.
Upvotes: 1
Views: 1539
Reputation: 1006819
Call setOnItemSelectedListener(null)
to remove an OnItemSelectedListener
.
Upvotes: 6