tezvyn:

Android Intents: The App's Messaging System

Source: developer.android.combeginner

An Intent is a message requesting an action from another app component. It's the 'glue' that lets you start new screens, launch background services, or ask other apps to open a URL.

An Intent is a message object used to request an action from another app component. It's the universal remote for an Android app, letting you start new screens (Activities), launch background tasks (Services), or ask other apps to handle a request like opening a URL. The common mistake is using an implicit intent (a general request) for internal app navigation, which can lead to security vulnerabilities if not properly configured, instead of an explicit intent (a specific request).

Read the original → developer.android.com

Get five bites like this every day.

Tezvyn delivers a daily feed of 60-second tech bites with quizzes to lock in what you learn.

Android Intents: The App's Messaging System · Tezvyn