0

Android application can have multiple launcher activities? Where to give conditions on which, which activity to launch?

1 Answers1

0

By specifying intent action as launcher in your manifest, you can have more than one launcher activities of your application

 <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

Add this in your activities

Abhishek
  • 1,337
  • 10
  • 29