Android Question What is the difference between intents and events?

Beja

Expert
Licensed User
Longtime User
Sometimes I tend to compare intents with events handlers.. I can hardly see the difference.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Intents is an Android mechanism that allows an app to interact with other applications. It is a very flexible system.

B4A is an event driven language. Your code is always executed through events. In some cases the events are related to received intents. However in most cases the events are not related to intents at all.
 
Upvote 0
Top