Run App Twice To Work

前端 未结 4 1163

I\'m making an android app that test if certain security features on your phone are enabled. For example, if you have password log in enabled or if your data is encrypted on you

4条回答
  •  不要未来只要你来
    2021-02-05 08:07

    how about using flag ?

    singleTop

    If an instance of the activity already exists at the top of the target task, the system routes the intent to that instance through a call to its onNewIntent() method, rather than creating a new instance of the activity.

    singleTask

    The system creates the activity at the root of a new task and routes the intent to it. However, if an instance of the activity already exists, the system routes the intent to existing instance through a call to its onNewIntent() method, rather than creating a new one.

    singleInstance

    Same as "singleTask", except that the system doesn't launch any other activities into the task holding the instance. The activity is always the single and only member of its task.

    http://developer.android.com/guide/topics/manifest/activity-element.html

提交回复
热议问题