Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an object where the text cycles and displays status messages. When the messages change, I want the click event of the object to change to take you to the activity that the message is relating to.

So, I have a TextView mTitleView and I'm assigning the event like this.

public void setOnTitleClickListener(OnClickListener listener) {
    mTitleView.setOnClickListener(listener);
}

How do I remove that click event? There are some status messages that do not have an actionable area so I'd like to turn off the click event. I'd also like to be able to cycle through these click events and dispose of them properly, but I'm unsure of the best practice.

share|improve this question

3 Answers

up vote 53 down vote accepted

mTitleView.setOnClickListener(null) should do the trick.

A better design might be to do a check of the status in the OnClickListener and then determine whether or not the click should do something vs adding and clearing click listeners.

share|improve this answer
There isn't any other cleanup I have to do to deregister the event? – Josh Mar 4 '11 at 15:02
Nope. The listener is just an object that the view uses to call a method when you click so when you set it to null it destroys it. – Robby Pond Mar 4 '11 at 15:04

Note that if a view is non-clickable (a TextView for example), setting setOnClickListener(null) will mean the view is clickable. Use mMyView.setClickable(false) if you don't want your view to be clickable. For example, if you use a xml drawable for the background, which shows different colours for different states, if your view is still clickable, users can click on it and the different background colour will show, which may look weird.

share|improve this answer
This is good to know for TextView's and such, but for a ListView it has no effect when a OnClickListener was previously set. – Someone Somewhere Feb 3 at 0:59
This is why I wrote "Note that if a view is non-clickable (a TextView for example)" - a ListView is clickable and so this doesn't work for it. – FreewheelNat Feb 12 at 17:34
Helped me more then accepted answer! – Roma Bugaian Mar 28 at 17:45

Perhaps setOnClickListener(null) ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.