About 179,000 results
Open links in new tab
  1. Intents and intent filters | App architecture | Android Developers

    Oct 10, 2025 · Each intent filter specifies the type of intents it accepts based on the intent's action, data, and category. The system delivers an implicit intent to your app component only if the …

  2. android - Intents in Kotlin - Stack Overflow

    Sep 13, 2016 · As explained on this page, Anko also provides some nice functions to navigate to other activity without the need of creating an intent, adding the extras or calling the function.

  3. What is Intent in Android? - GeeksforGeeks

    Jul 15, 2025 · In such a case, intent provides information on available components provided by the system that is to be invoked. For example, you may write the following code to view the …

  4. Understanding Intents in Kotlin Android Studio (Explicit

    Mar 14, 2025 · An Intent in Android is like a message that you send when you want something to happen. It helps one component (like an Activity) talk to another (like another Activity, Service, …

  5. Intent | API reference | Android Developers

    Intent | API reference | Android Developers

  6. Android Intent Handling Between Activities Using Kotlin

    Aug 3, 2022 · We’ve used Kotlin’s with expression to prevent setting data over the intent object every time. Besides, we’ve created three different intents apart from the ones already …

  7. Implicit and Explicit Intents in Android with Examples

    Jul 11, 2025 · What is intent in Android? The intent is a messaging object which passes between components like services, content providers, activities, etc. Normally startActivity () method is …

  8. kotlin - Opening an Android App from another Android App using Intents

    Jul 13, 2023 · I am having an issue opening one of my other application using Intents in Android. Here is what I have right now: val intent = Intent().apply { setClassName(packageName, …

  9. How to implement implicit and explicit Android Intents in Kotlin

    Jun 15, 2023 · To create an explicit intent, define the component name for the Intent object—all other intent properties are optional. Specific new additions that should be considered for …

  10. Interact with other apps | App architecture | Android Developers

    Feb 10, 2025 · The topics in this guide show you how to use an Intent to perform some basic interactions with other apps, such as starting another app, receiving a result from that app, and …