how to stop phone calls to be log in the call log on android
问题 I'm writing an application that block some phone calls. I use a broadcast receiver to listen to incoming calls: <receiver android:name="InComingCallReceiver"> <intent-filter android:priority="100"> <action android:name="android.intent.action.PHONE_STATE"></action> </intent-filter> </receiver> And I cancelled the calls I don't want: TelephonyManager telephony = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE); try { Class c = Class.forName(telephony.getClass().getName());