我知道您可以通过以下方式进入主屏幕:
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
但是,有没有办法转到其他主屏幕?
您向左/右滑动时看到的其他主屏幕。
答案 0 :(得分:1)
您需要一个扩展Activity的类。
然后您可以使用Intent intent = new Intent(CurrentActivity.this, OtherActivity.class)
startActivity(intent)
请注意,您还可以转到其他屏幕,例如从设备设置屏幕,Wi-Fi设置等。
了解更多
答案 1 :(得分:0)
您可以使用在Intent
中扩展Activity的类的显式类名Intent other = new Intent(this, OtherActivity.class);
startActivity(other);