本文介绍了如何杀死android中的com.android.phone进程?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法杀死android中的com.android.phone进程?我尝试过这种方法:

Is there a way to kill com.android.phone process in android? i have tried this method:

Method forceStopPackage = mActivityManager.getClass().getDeclaredMethod("forceStopPackage", String.class);
forceStopPackage.setAccessible(true);
forceStopPackage.invoke(mActivityManager, pkgName);



它除了com.android.phone之外还能很好用,有人可以帮帮我。

谢谢!


it works great except com.android.phone,could anyone please help me.
Thank you!

推荐答案

这篇关于如何杀死android中的com.android.phone进程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 05:19