Let me explain, I had this Activity, where there is a Button and a TextView. I had to create a listener to this button(can’t be a inner class or private class), lets call ButtonListener. I need to change the TextView from the Activity inside the ButtonListener. How do I do that?
Activity –> Button b, TextView t
b.setOnClickListener(ButtonListener listener)
listener –> onClick() { //need to change the TextView here }
Thanks
Hope this help.