Reputation: 1861
What's the equivalent of an NSNotification in Android?
I need to be able to send and receive the notification from arbitrary classes (not necessarily activities).
Upvotes: 1
Views: 238
Reputation: 698
You can use LocalBroadcastManager or can implement Observer interface to accomplish your task as iOS NSNotification.
Upvotes: 1
Reputation: 18276
This pattern is called EventBus, and theres some libraries for that.
Upvotes: 1