skip to Main Content

I’m a begginer to android development, and I’m trying to add an event listener to a button without using an onClick() in the xml file. Where should I place my event listener and should I remove it somewhere, say, on the onStop method?

Thanks

2

Answers


  1. According to the official documentation of Android, listeners should be added in the OnCreate():
    https://developer.android.com/develop/ui/views/touch-and-input/input-events

    Also, it is not necessary to remove the listeners, since they no longer have a reference when the object is disposed and are thus removed.

    Login or Signup to reply.
  2. You need to put into onCreate, and it listen, whenever you perform that event.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search