What is the difference between listeners and adapters?

后端 未结 5 440
再見小時候
再見小時候 2021-02-02 11:07

I\'m trying to differentiate between listeners and adapters.

Are they pretty much the same but in listeners you have to implement all the methods in the interface, but w

5条回答
  •  难免孤独
    2021-02-02 11:54

    Listeners are used when you plan to utilize most of the interface methods. When you need to use only a few of the methods an adapter would be better b/c you would not have to override the remainder of the methods.

提交回复
热议问题