android-从主屏幕开始活动
作者:互联网
我有一个后台服务可以启动活动,
Intent i = new Intent(this, MyActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
销毁该活动并通过“长按主键菜单”将其重新启动后,该活动将再次启动.但是我想开始主要活动.我怎么能意识到这一点?
解决方法:
您能详细解释一下吗?如果我了解您的问题,请尝试设置FLAG_ACTIVITY_NO_HISTORY.
另外,手动解决方案是检查MyActivity中的意图上的FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY并在看到该标志设置后启动到主要活动.下面的代码应该这样做:
if ((getIntent().getFlags() & FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) > 0) {
activity.startActivity(new Intent(context , MainActivity.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
}
标签:android-homebutton,android-service,android-activity,android 来源: https://codeday.me/bug/20191102/1994802.html