I have an activity that has buttons and images that can appear and disappear depending on user interactions.
What I am finding is that objects at the back, which hav
Try: object.setClickable(false); As an alternative, you can: object.setEnabled(false);
object.setClickable(false);
object.setEnabled(false);