我正在尝试开发一个基本代码来阻止 Android 中的调用。我的代码最初可以工作,但现在不行。
阻止所有调用的代码
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
tm = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
try {
Class<?> c = Class.forName(tm.getClass().getName());
Method m = c.getDeclaredMethod("getITelephony");
m.setAccessible(true);
ITelephony 是使用的接口
telephony = (ITelephony) m.invoke(tm);
不能调用任何可用的函数
telephony.endCall();
telephony.notifyAll();
} catch (Exception e) {
// TODO: handle exception
}
}