写点什么

Android 来去电监听,电话挂断,flutter 人脸识别

作者:嘟嘟侠客
  • 2021 年 11 月 27 日
  • 本文字数:4234 字

    阅读完需:约 14 分钟

2、怎么监听,来电去电监听方式一样吗?


3、实战,有什么需要特别注意地方?


一. 监听来电去电能干什么




1、能够对监听到的电话做个标识,告诉用户这个电话是诈骗、推销、广告什么的


2、能够针对那些特殊的电话进行自动挂断,避免打扰到用户


二. 来电去电的监听方式(不一样的方式)



2.1 来去电监听方式一(PhoneStateListener)

来电监听是使用 PhoneStateListener 类,使用方式是,将 PhoneStateListener 对象(一般是自己继承 PhoneStateListener 类完成一些封装)注册到系统电话管理服务中去(TelephonyManager)


然后通过 PhoneStateListener 的回调方法 onCallStateChanged(int state, String incomingNumber) 实现来电的监听 (详细实现可以参考后面给出的拓展阅读部分)


注册监听


private void registerPhoneStateListener() {


CustomPhoneStateListener customPhoneStateListener = new CustomPhoneStateListener(this);


TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);


if (telephonyManager != null) {


telephonyManager.listen(customPhoneStateListener, PhoneStateListener.LISTEN_CALL_STATE);


}


}


PhoneStateListener 的 onCallStateChanged 方法监听来电状态


package com.phone.listen;


import android.content.Context;


import android.telephony.PhoneStateListener;


import android.telephony.ServiceState;


import android.telephony.TelephonyManager;


import android.util.Log;


/**


  • 来去电监听


*/


public class CustomPhoneStateListener extends PhoneStateListener {


private Context mContext;


public CustomPhoneStateListener(Context context) {


mContext = context;


}


@Override


public void onServiceStateChanged(ServiceState serviceState) {


super.onServiceStateChanged(serviceState);


Log.d(PhoneListenService.TAG, "CustomPhoneStateListener onServiceStateChanged: " + serviceState);


}


@Override


public void onCallStateChanged(int state, String incomingNumber) {


Log.d(PhoneListenService.TAG, "CustomPhoneStateListener state: "


  • state + " incomingNumber: " + incomingNumber);


switch (state) {


case TelephonyManager.CALL_STATE_IDLE: // 电话挂断


break;


case TelephonyManager.CALL_STATE_RINGING: // 电话响铃


Log.d(PhoneListenService.TAG, "CustomPhoneStateListener onCallStateChanged endCall");


HangUpTelephonyUtil.endCall(mContext);


break;


case TelephonyManager.CALL_STATE_OFFHOOK: // 来电接通 或者 去电 但是没法区分


break;


}


}


}


三种状态源码解释


/** Device call state: No activity. */


public static final int CALL_STATE_IDLE = 0; // 电话挂断


/** Device call state: Ringing. A new call arrived and is


  • ringing or waiting. In the latter case, another call is

  • already active. */


public static final int CALL_STATE_RINGING = 1; // 来电响铃


/** Device call state: Off-hook. At least one call exists


  • that is dialing, active, or on hold, and no calls are ringing

  • or waiting. */


public static final int CALL_STATE_OFFHOOK = 2; // 来电接通 或者 去电拨号 但是没法区分出来

2.2 来去电监听方式二(广播监听,但是时机比上面的 PhoneStateListener 方式要晚一点)

<receiver android:name=".PhoneStateReceiver"


android:enabled="true"


android:process=":PhoneListenService">


<intent-filter>


<action android:name="android.intent.action.NEW_OUTGOING_CALL" />


<action android:name="android.intent.action.PHONE_STATE" />


</intent-filter>


</receiver>


public class PhoneStateReceiver extends BroadcastReceiver {


@Override


public void onReceive(Context context, Intent intent) {


if (intent.getAction().equals(Intent.ACTION_NEW_OUTGOING_CALL)) {


// 去电,可以用定时挂断


} else {


//来电


String state = intent.getStringExtra(TelephonyManager.EXTRA_STATE);


Log.d(PhoneListenService.TAG, "PhoneStateReceiver onReceive state: " + state);


if (state.equalsIgnoreCase(TelephonyManager.EXTRA_STATE_RINGING)) {


Log.d(PhoneListenService.TAG, "PhoneStateReceiver onReceive endCall");


HangUpTelephonyUtil.endCall(context);


}


}


}


}


三. 实战,有什么需要特别注意地方



3.1 双卡双待的手机怎么获取

对于双卡手机,每张卡都对应一个 Service 和一个 PhoneStateListener,需要给每个服务注册自己的 PhoneStateListener,服务的名称还会有点变化,厂商可能会修改


public ArrayList<String> getMultSimCardInfo() {


// 获取双卡的信息,这个也是经验尝试出来的,不知道其他厂商有什么坑


ArrayList<String> phoneServerList


《Android 学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》

【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享


= new ArrayList<String>();


for(int i = 1; i < 3; i++) {


try {


String phoneServiceName;


if (MiuiUtils.isMiuiV6()) {


phoneServiceName = "phone." + String.valueOf(i-1);


} else {


phoneServiceName = "phone" + String.valueOf(i);


}


// 尝试获取服务看是否能获取到


IBinder iBinder = ServiceManager.getService(phoneServiceName);


if(iBinder == null) continue;


ITelephony iTelephony = ITelephony.Stub.asInterface(iBinder);


if(iTelephony == null) continue;


phoneServerList.add(phoneServiceName);


} catch(Exception e) {


e.printStackTrace();


}


}


// 这个是默认的


phoneServerList.add(Context.TELEPHONY_SERVICE);


return phoneServerList;


}

3.2 挂断电话

挂断电话使用系统服务提供的接口去挂断,但是挂断电话是个并不能保证成功的方法,所以会有多种方式挂断同时使用,下面提供


package com.phone.listen;


import android.content.Context;


import android.os.RemoteException;


import android.telephony.TelephonyManager;


import com.android.internal.telephony.ITelephony;


import java.lang.reflect.InvocationTargetException;


import java.lang.reflect.Method;


import java.util.concurrent.Executor;


import java.util.concurrent.Executors;


/**


  • 封装挂断电话接口


*/


public class HangUpTelephonyUtil {


public static boolean endCall(Context context) {


boolean callSuccess = false;


ITelephony telephonyService = getTelephonyService(context);


try {


if (telephonyService != null) {


callSuccess = telephonyService.endCall();


}


} catch (RemoteException e) {


e.printStackTrace();


} catch (Exception e){


e.printStackTrace();


}


if (callSuccess == false) {


Executor eS = Executors.newSingleThreadExecutor();


eS.execute(new Runnable() {


@Override


public void run() {


disconnectCall();


}


});


callSuccess = true;


}


return callSuccess;


}


private static ITelephony getTelephonyService(Context context) {


TelephonyManager telephonyManager = (TelephonyManager)


context.getSystemService(Context.TELEPHONY_SERVICE);


Class clazz;


try {


clazz = Class.forName(telephonyManager.getClass().getName());


Method method = clazz.getDeclaredMethod("getITelephony");


method.setAccessible(true);


return (ITelephony) method.invoke(telephonyManager);


} catch (ClassNotFoundException e) {


e.printStackTrace();


} catch (NoSuchMethodException e) {


e.printStackTrace();


} catch (IllegalArgumentException e) {


e.printStackTrace();


} catch (IllegalAccessException e) {


e.printStackTrace();


} catch (InvocationTargetException e) {


e.printStackTrace();


}


return null;


}


private static boolean disconnectCall() {


Runtime runtime = Runtime.getRuntime();


try {


runtime.exec("service call phone 5 \n");


} catch (Exception exc) {


exc.printStackTrace();


return false;


}


return true;


}


// 使用 endCall 挂断不了,再使用 killCall 反射调用再挂一次


public static boolean killCall(Context context) {


try {


// Get the boring old TelephonyManager


TelephonyManager telephonyManager = (TelephonyManager)


context.getSystemService(Context.TELEPHONY_SERVICE);


// Get the getITelephony() method


Class classTelephony = Class.forName(telephonyManager.getClass().getName());


Method methodGetITelephony = classTelephony.getDeclaredMethod("getITelephony");


// Ignore that the method is supposed to be private


methodGetITelephony.setAccessible(true);


// Invoke getITelephony() to get the ITelephony interface


Object telephonyInterface = methodGetITelephony.invoke(telephonyManager);


// Get the endCall method from ITelephony


Class telephonyInterfaceClass = Class.forName(telephonyInterface.getClass().getName());


Method methodEndCall = telephonyInterfaceClass.getDeclaredMethod("endCall");


// Invoke endCall()


methodEndCall.invoke(telephonyInterface);


} catch (Exception ex) { // Many things can go wrong with reflection calls


return false;


}


return true;


}


}


ITelephony 接口在 layoutlib.jar 包中,需要导入 android sdk 目录\platforms\android-8\data\layoutlib.jar


挂断电话需要权限


<uses-permission android:name="android.permission.CALL_PHONE" />

最后

希望大家能有一个好心态,想进什么样的公司要想清楚,并不一定是大公司,我选的也不是特大厂。当然如果你不知道选或是没有规划,那就选大公司!希望我们能先选好想去的公司再投或内推,而不是有一个公司要我我就去!还有就是不要害怕,也不要有压力,平常心对待就行,但准备要充足。最后希望大家都能拿到一份满意的 offer !如果目前有一份工作也请好好珍惜好好努力,找工作其实挺累挺辛苦的。


这里附上上述的面试题相关的几十套字节跳动,京东,小米,腾讯、头条、阿里、美团等公司 19 年的面试题。把技术点整理成了视频和 PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节。


由于篇幅有限,这里以图片的形式给大家展示一小部分。



本文已被CODING开源项目:《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》收录

用户头像

嘟嘟侠客

关注

还未添加个人签名 2021.03.19 加入

还未添加个人简介

评论

发布
暂无评论
Android 来去电监听,电话挂断,flutter人脸识别