码迷,mamicode.com
首页 > 其他好文 > 详细

【练习】拦截来电

时间:2016-04-18 20:16:06      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:

public class MyService extends Service {
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public void onCreate() {
        super.onCreate();
        //监听来电。
        TelephonyManager manager = (TelephonyManager) getSystemService(Service.TELEPHONY_SERVICE);
        PhoneStateListener listener = new MyPhoneStateListener();
        manager.listen(listener,PhoneStateListener.LISTEN_CALL_STATE);//监听电话状态。
    }
    class MyPhoneStateListener extends PhoneStateListener{
        @Override
        public void onCallStateChanged(int state, String incomingNumber) {
            super.onCallStateChanged(state, incomingNumber);
            Log.i("Main",incomingNumber+"");
            if("5556".equals(incomingNumber)){
                switch (state){//判断状态
                    case TelephonyManager.CALL_STATE_IDLE://0
                                //挂断
                        Log.i("Main",TelephonyManager.CALL_STATE_IDLE+"");
                            break;
                    case TelephonyManager.CALL_STATE_RINGING://1
                        //响铃状态。
                        Log.i("Main", TelephonyManager.CALL_STATE_RINGING + "");
                        try {
                            //forName:要反射的包名.类名。----
                            Class myclass =   Class.forName("android.os.ServiceManager");
                            //得到方法。
                            /*
                            1;参数:方法的名称
                            2:参数:方法参数的类型的字节码文件。
                             */
                            Method method = myclass.getMethod("getService", String.class);
                            //调用方法。
                            /*
                            1:表示是否用对象来调用这个方法。如果不用对象则用null,
                            2:表示实参
                             */
                           ITelephony binder = (ITelephony) method.invoke(null, Service.TELEPHONY_SERVICE);
                            binder.endCall();//挂断电话
                        } catch (ClassNotFoundException e) {
                            e.printStackTrace();
                        } catch (NoSuchMethodException e) {
                            e.printStackTrace();
                        } catch (InvocationTargetException e) {
                            e.printStackTrace();
                        } catch (IllegalAccessException e) {
                            e.printStackTrace();
                        } catch (RemoteException e) {
                            e.printStackTrace();
                        }
                        break;
                    case TelephonyManager.CALL_STATE_OFFHOOK://2
                        //通话状态
                        Log.i("Main",TelephonyManager.CALL_STATE_OFFHOOK+"");
                        //
                        break;
                }
            }
        }
    }
}
public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Intent intent = new Intent(this,MyService.class);
        startService(intent);
    }
}

 

【练习】拦截来电

标签:

原文地址:http://www.cnblogs.com/anni-qianqian/p/5405514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!