|
@@ -401,7 +401,7 @@ public class Jump2View {
|
|
|
* @param object
|
|
* @param object
|
|
|
*/
|
|
*/
|
|
|
public void goHomePageView(final Activity context, Object object) {
|
|
public void goHomePageView(final Activity context, Object object) {
|
|
|
- final Intent intent = new Intent(context, ActMain.class).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
|
|
|
+ final Intent intent = new Intent(context, ActMain.class).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
|
|
|
if (object instanceof String) {
|
|
if (object instanceof String) {
|
|
|
//统计用户登录信息
|
|
//统计用户登录信息
|
|
|
UMConfigUtils.onProfileSignIn();
|
|
UMConfigUtils.onProfileSignIn();
|
|
@@ -440,7 +440,7 @@ public class Jump2View {
|
|
|
Jump2View.getInstance().goBindPhone(activity, ChangeTelAct.FROM_SPLASH);
|
|
Jump2View.getInstance().goBindPhone(activity, ChangeTelAct.FROM_SPLASH);
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
- Intent intent = new Intent(activity, ActMain.class).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
|
|
|
+ Intent intent = new Intent(activity, ActMain.class).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
|
|
|
activity.startActivity(intent);
|
|
activity.startActivity(intent);
|
|
|
activity.finish();
|
|
activity.finish();
|
|
|
}
|
|
}
|