我想从应用列表和最近的应用列表中删除我的应用。所以我尝试使用以下代码禁用我的主/启动器活动:
ComponentName componentToDisable = new ComponentName(context, MainActivity.class);
context.getPackageManager().setComponentEnabledSetting(componentToDisable,
PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
这可以完成工作。但是现在我尝试重新安装该应用程序,但它无法显示“活动 MainActivity 类不存在”。如果我卸载该应用程序,安装将再次运行。我该如何处理这个问题?非常感谢您的时间和帮助