我知道您可以通过以下方式进入主屏幕:
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
但是,有没有办法也可以转到其他主屏幕?
向左/向右滑动时看到的其他主屏幕。
我知道您可以通过以下方式进入主屏幕:
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
但是,有没有办法也可以转到其他主屏幕?
向左/向右滑动时看到的其他主屏幕。