You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static void onBackPressed(Activity a) {
Intent launcherIntent = new Intent(Intent.ACTION_MAIN);
launcherIntent.addCategory(Intent.CATEGORY_HOME);
a.startActivity(launcherIntent);
}
这个方法在小米手机上总是返回到登录页面,我loginAcitivty和MainActivity都有android.intent.action.MAIN,感觉是这个导致的,需要怎么修改?请教大神
The text was updated successfully, but these errors were encountered:
public static void onBackPressed(Activity a) {
Intent launcherIntent = new Intent(Intent.ACTION_MAIN);
launcherIntent.addCategory(Intent.CATEGORY_HOME);
a.startActivity(launcherIntent);
}
这个方法在小米手机上总是返回到登录页面,我loginAcitivty和MainActivity都有android.intent.action.MAIN,感觉是这个导致的,需要怎么修改?请教大神
The text was updated successfully, but these errors were encountered: