我想实现一个阻止手机号码的应用程序,用于接收或发送呼叫和消息。在我的应用程序中,我在EditText
框输入手机号码然后我点击一个按钮来阻止用户输入的手机号码。
我已经实现了一个活动类,如下所示:
public class BlockNumberActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
((Button)findViewById(R.id.block)).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String mobileNumer = ((EditText)findViewById(R.id.mobileNum)).getText().toString();
//How to block entered mobileNumber
}
});
((Button)findViewById(R.id.unblock)).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String mobileNumer = ((EditText)findViewById(R.id.mobileNum)).getText().toString();
//How to unblock entered mobileNumber
}
});
}
}
我想我们可以使用BroadcastReceiver
。但我对它没有更多的了解。请告诉我如何实现阻止或解锁移动号码。
请任何人帮我.....
答案 0 :(得分:26)
创建 PhoneCallReceiver .java
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
import android.util.Log;
import android.widget.Toast;
public class PhoneCallReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
TelephonyManager telephony = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
PhoneCallStateListener customPhoneListener = new PhoneCallStateListener(context);
telephony.listen(customPhoneListener, PhoneStateListener.LISTEN_CALL_STATE);
}}
现在创建PhoneCallStateListener .java
import java.lang.reflect.Method;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.media.AudioManager;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
import android.widget.Toast;
import com.android.internal.telephony.ITelephony;
public class PhoneCallStateListener extends PhoneStateListener {
private Context context;
public PhoneCallStateListener(Context context){
this.context = context;
}
@Override
public void onCallStateChanged(int state, String incomingNumber) {
SharedPreferences prefs=PreferenceManager.getDefaultSharedPreferences(context);
switch (state) {
case TelephonyManager.CALL_STATE_RINGING:
String block_number = prefs.getString("block_number", null);
AudioManager audioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
//Turn ON the mute
audioManager.setStreamMute(AudioManager.STREAM_RING, true);
TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
try {
Toast.makeText(context, "in"+block_number, Toast.LENGTH_LONG).show();
Class clazz = Class.forName(telephonyManager.getClass().getName());
Method method = clazz.getDeclaredMethod("getITelephony");
method.setAccessible(true);
ITelephony telephonyService = (ITelephony) method.invoke(telephonyManager);
//Checking incoming call number
System.out.println("Call "+block_number);
if (incomingNumber.equalsIgnoreCase("+91"+block_number)) {
//telephonyService.silenceRinger();//Security exception problem
telephonyService = (ITelephony) method.invoke(telephonyManager);
telephonyService.silenceRinger();
System.out.println(" in "+block_number);
telephonyService.endCall();
}
} catch (Exception e) {
Toast.makeText(context, e.toString(), Toast.LENGTH_LONG).show();
}
//Turn OFF the mute
audioManager.setStreamMute(AudioManager.STREAM_RING, false);
break;
case PhoneStateListener.LISTEN_CALL_STATE:
}
super.onCallStateChanged(state, incomingNumber);
}}
现在在src中创建此包 com.android.internal.telephony
现在在此包中右键单击 - >新 - >文件现在提供名称ITelephony.aidl
并粘贴此代码
package com.android.internal.telephony;
interface ITelephony {
boolean endCall();
void answerRingingCall();
void silenceRinger();
}
注意:代码在Android 2.2(Froyo),2.3(GingerBread)中进行了测试
答案 1 :(得分:3)
阻止来电使用此http://androidsourcecode.blogspot.in/2010/10/blocking-incoming-call-android.html以及此http://www.codeproject.com/Questions/333253/Block-Incoming-calls-in-android-without-single-rin,http://www.anddev.org/post52643.html?hilit=incoming%20call#p52643或阻止传出,请参阅How to Block outgoing calls and Text SMS和Blocking outgoing calls and texts (BroadcastReceiver or Service?),Android: Taking complete control of phone(kiosk mode), is it possible? How?
答案 2 :(得分:1)
本规范适用于我
try {
String serviceManagerName = "android.os.ServiceManager";
String serviceManagerNativeName = "android.os.ServiceManagerNative";
String telephonyName = "com.android.internal.telephony.ITelephony";
Class<?> telephonyClass;
Class<?> telephonyStubClass;
Class<?> serviceManagerClass;
Class<?> serviceManagerNativeClass;
Method telephonyEndCall;
Object telephonyObject;
Object serviceManagerObject;
telephonyClass = Class.forName(telephonyName);
telephonyStubClass = telephonyClass.getClasses()[0];
serviceManagerClass = Class.forName(serviceManagerName);
serviceManagerNativeClass = Class.forName(serviceManagerNativeName);
Method getService =
serviceManagerClass.getMethod("getService", String.class);
Method tempInterfaceMethod = serviceManagerNativeClass.getMethod(
"asInterface", IBinder.class);
Binder tmpBinder = new Binder();
tmpBinder.attachInterface(null, "fake");
serviceManagerObject = tempInterfaceMethod.invoke(null, tmpBinder);
IBinder retbinder = (IBinder) getService.invoke(
serviceManagerObject, "phone");
Method serviceMethod = telephonyStubClass.getMethod("asInterface",
IBinder.class);
telephonyObject = serviceMethod.invoke(null, retbinder);
telephonyEndCall = telephonyClass.getMethod("endCall");
telephonyEndCall.invoke(telephonyObject);
}
} catch (Exception e) {
e.printStackTrace();
Toast.makeText(context, "Unable to Block Call", Toast.LENGTH_SHORT).show();
}
答案 3 :(得分:0)
要阻止拨打任何特定联系电话号码,本教程将帮助您解决问题。 http://androiddesk.wordpress.com/2012/08/02/blocking-a-call-without-user-intervention-in-android/
答案 4 :(得分:-1)
此代码正在运行......
首先下载此课程ITelephony
if ((state != null)
&& (state.equals(TelephonyManager.EXTRA_STATE_RINGING))) {
CallLogReceiver.phoneNo = intent.getExtras().getString(
"incoming_number");
if (CallLogReceiver.blockNo.equals(CallLogReceiver.phoneNo)) {
Intent blockCallIntent = new Intent();
blockCallIntent.setClassName("com.example.calllogdemo",
"com.example.calllogdemo.BlockCallActivity");
blockCallIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
blockCallIntent
.putExtra("blockNo", CallLogReceiver.phoneNo);
context.startActivity(blockCallIntent);
try {
TelephonyManager telephonyManager = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
Class<?> classTelephony = Class
.forName(telephonyManager.getClass().getName());
Method methodGetITelephony = classTelephony
.getDeclaredMethod("getITelephony");
methodGetITelephony.setAccessible(true);
ITelephony telephonyService = (ITelephony) methodGetITelephony
.invoke(telephonyManager);
telephonyService.endCall();
} catch (Exception e) {
e.printStackTrace();
}
}
}
并在清单文件中使用此权限
<uses-permission android:name="android.permission.CALL_PHONE" />