Android application can have multiple launcher activities? Where to give conditions on which, which activity to launch?
Asked
Active
Viewed 3,990 times
0
-
Please follow this link https://xjaphx.wordpress.com/2012/06/04/create-application-with-multiple-entry-point-activities/ – Pravin Fofariya Apr 13 '16 at 05:55
-
Please paste your menifests file code, i have understood your actual problem – Bhunnu Baba Apr 13 '16 at 06:05
1 Answers
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
-
Will it work? How OS will decide which of the launcher activity to trigger? – Narendra Singh Dec 12 '16 at 14:59
-