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.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -