What is different between intent and listener? [closed]

An intent is a class. Intents, in the Android platform, make up the major communication protocol for moving information between application components. In a well-designed Android application, components (activity, content provider, or service) should never directly access an instance of any other component.

An event listener is used to process events.

Leave a Comment