Flarosa
Flarosa

Reputation: 1861

Android equivalent of NSNotification?

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

Answers (2)

Pritesh Patel
Pritesh Patel

Reputation: 698

You can use LocalBroadcastManager or can implement Observer interface to accomplish your task as iOS NSNotification.

Upvotes: 1

Marcos Vasconcelos
Marcos Vasconcelos

Reputation: 18276

This pattern is called EventBus, and theres some libraries for that.

Upvotes: 1

Related Questions