URL- :
intent:#Intent;launchFlags=0x10000000;component=com.mycompany.myapp/com.mycompany.myapp.MyActivity;end
URL- startFlag Intent.FLAG_ACTIVIY_NEW_TASK, ( - ).
EDIT: OP
, URL: http://com.my.app/5058749
Intent, Android , <intent-filter> <activity> . , , , , Activity, :
1) (, ), onCreate() super.onCreate():
if (!isTaskRoot()) {
// Activity was launched into another task. Restart it in its own task
Intent intent = new Intent(this, this.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
finish();
return;
}
2) singleTask ,
android:launchMode="singleTask"
<activity>. Activity , , , . , , , .
3) , , Intent, onCreate() ( Intent data URL- ). , , , 1 .