直播軟體開發,Android實現根據程式名殺死特定程式

zhibo系統開發發表於2023-05-17

直播軟體開發,Android實現根據程式名殺死特定程式

首先你實現功能的程式必須是系統程式,在AndroidManifest裡面加入如下標籤。

android:sharedUserId="android.uid.system"


呼叫ActivityManager的forceStopPackageAsUser方法

ActivityManager mActivityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
mActivityManager.forceStopPackageAsUser("com.may.exampprocess", ActivityManager.getCurrentUser());


com.may.exampprocess為你要殺死程式的程式名。


呼叫ActivityManager.getCurrentUser()方法要在AndroidManifast.xml裡面宣告如下許可權

<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>


以上就是直播軟體開發,Android實現根據程式名殺死特定程式, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2952723/,如需轉載,請註明出處,否則將追究法律責任。

相關文章