停止我从 startActivity 开始的应用程序时遇到了一些问题。这是我的启动方式:
Intent theApp = new Intent();
theApp = getPackageManager().getLaunchIntentForPackage(thePackageName);
theApp.addCategory(Intent.CATEGORY_LAUNCHER);
theApp.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getApplicationContext().startActivity(theApp);
在它运行了一段时间后,我试图像这样停止它:
if(stopService(theApp))
Log.d(TAG,"Stopped app successfully!");
else
Log.d(TAG,"Failed to stop the app!");
任何想法为什么这不起作用?在此先感谢您的帮助