I have a custom view that I created by extending the View
class. My custom view overrides the onTouchEvent.
I want to be able to turn the view's ability to listen on and off. I need to do that from within the view. Does anyone know how I can accomplish this? Simply calling
setEnabled(false);
does not work.