About 152,000 results
Open links in new tab
  1. android - Intents in Kotlin - Stack Overflow

    Sep 13, 2016 · val intent: Intent = Intent(MyApp.instance, DestinationActivity::class.java); MyApp.instance.startActivity(intent)

  2. Implicit and Explicit Intents in Android with Examples

    Jan 2, 2025 · There are two types of intents in android. Implicit Intent. Using implicit Intent, components can’t be specified. An action to be performed is declared by implicit intent. Then android operating system will filter out components that will respond to the action. For Example,

  3. Kotlin Android start new Activity - Stack Overflow

    Aug 5, 2017 · Simply you can start an Activity in KOTLIN by using this simple method, val intent = Intent(this, SecondActivity::class.java) intent.putExtra("key", value) startActivity(intent)

  4. Android Intent Handling Between Activities Using Kotlin

    Aug 4, 2022 · In this tutorial, we’ll be discussing Android Intents and implement them using Kotlin in our application. What Will You Learn? What are Intents? Types Of Intents? As the name says Intent is something that’s used to perform some action with respect to the flow of the android application. Intents can be used to:

  5. GitHub - dalemoncayo/android-kotlin-intents: Explore Android …

    This repository serves as a comprehensive demonstration of working with intents in Android applications using Kotlin. The code provides examples of both activity-to-activity intent implementation and passing extra parameters between activities.

  6. Android Intents Tutorial with Kotlin - Kodeco

    Sep 12, 2019 · What an Intent is and what its wider role is within Android. How you can use an Intent to create and retrieve content from other apps for use in your own. How to receive or respond to an Intent sent by another app.

  7. Android Intents with Kotlin - DEV Community

    Mar 1, 2020 · Intent Filters are expressions that are used to specify the type of components or actions that can be received by the application. In this tutorial we shall build a simple Bio App where you shall be able to call, send an email and view the location with the use of implicit Intents.

  8. Intents in Android App Development Using Kotlin

    Nov 10, 2024 · With intents, you can navigate from one activity to another, open external applications, and share data across activities or services. This guide will walk you through how to use intents in Android development using Kotlin.

  9. tutsplus/kotlin-android-fundamentals-intents - GitHub

    In this course, you'll learn everything you need to know to use Intents in your Kotlin Android app. You'll start with learning how Intents help different components of Android to work together. You'll learn how to call activities within the same app and how to use activities from outside the app.

  10. Using Android Intent object in Kotlin - sebhastian

    Jan 4, 2022 · This tutorial will help you run both types of Intent when developing an Android application with Kotlin. There’s also a companion Android project that demonstrates how to create both types of Intent in this GitHub repo .

  11. Some results have been removed
Refresh