open android application using url and go to different screen -
how start app using url link , go different activity. have used code
<activity android:name=".act1" android:label="activity first" android:screenorientation="landscape" > <intent-filter> <action android:name="android.intent.action.view" /> <category android:name="android.intent.category.default" /> <category android:name="android.intent.category.browsable" /> <data android:host="xyz.com" android:pathprefix="/abc/" android:scheme="https" /> </intent-filter> </activity>
by using code able open act1 while entering android app want switch act2 , act3. because have use 3 different url , stating screen should act1, act2 , act3 click on url1, url2 , url3 respectively. please suggest if solution.
the best things launch same activity ("front activity"). in "front activity" parse url , launch act1, 2, 3 depending on url.