在停止啓動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!");
任何想法,爲什麼這個心不是工作?在此先感謝您的幫助
Call finish();這會殺死它。 – g00dy
你能告訴我們真正完整的代碼嗎? – Opiatefuchs
你正試圖殺死你開始的外部應用程序..對嗎? –