这个可以 用android 任务中app 隐藏起来
此属性是 每次启动app时都会进入 根目录中 android:clearTaskOnLaunch="true" 此属性必须设在 根目录中才有效
android隐士意图 之
<intent-filter>
<action android:name="tag"></action>
<category android:name="android.intent.category.DEFAULT" />
Intent intent = new Intent();
intent.setAction("tag");
startActivity(intent); 此为隐士意图
setAction 和 <action android:name="tag"></action> 注意
android FLAG_ACTIVITY_NEW_TASK 和 taskAffinity
开启新任务栈
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 此为必须加
android:taskAffinity=".ssss" 为必须加的 注意 要以 .开头 哦