Intent intent=new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
ComponentName cn=new ComponentName("com.android.launcher3","com.android.launcher3.Launcher");
intent.setComponent(cn);
context.startActivity(intent);
【Android问题】启动其他程序
于 2022-06-23 21:07:17 首次发布