What to do to give a notification in android app, when user tries to click on the button which is currently disabled ? It will be enabled in future. Then it has to perform another operation. Help me with the disabled case ...
You should try using onTouchListener. AFAIK,setEnabled(false) disables onClick, but it should leave the onTouchListener working. Just remember one thing, return false from the listener once your work is done(in order to consume the event allow other events after it to be fired)