Tag: Intents

Explicit Intents in Android: Part 2

Welcome back! In this tutorial, we will be discussing explicit intents and their implementation in Android app development. Setting Up the Project First, let’s create a new project in Android Studio called “Explicit Intents”. In the project, we have a main activity (Activity ...

Explicit Intents in Android: Part 1

Manifest File Inside our manifest file, we have defined two activities: Activity A and Activity B. Activity A is set as the entry point of the application, specified by the intent filter with the action “action.main” and category “category.launcher”. Activity B is ...