Android 判断是否在通话中

作者: 103style | 来源:发表于2019-06-14 11:10 被阅读11次

转载请以链接形式标明出处:
本文出自:103style的博客

最后的判断代码:

/**
 * 是否正在电话通话中
 */
private boolean phoneIsInUse() {
    TelephonyManager mTelephonyManager = (TelephonyManager) activity.getSystemService(Context.TELEPHONY_SERVICE);
    int state = mTelephonyManager.getCallState();
    return state != TelephonyManager.CALL_STATE_IDLE;
}

开始在网上搜了搜,找到下面这两个:

  • 然后 却找不到 ITelephony 类了。
    private boolean phoneIsInUse() {
        boolean phoneInUse = false;
        try {
            ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone"));
            if (phone != null) phoneInUse = !phone.isIdle();
        } catch (RemoteException e) {
            Log.w(TAG, "phone.isIdle() failed", e);
        }
        return phoneInUse;
    }
    
  • 6.0之后才可以用这个, 且需要判断 READ_PHONE_STATE 权限.
    public static boolean phoneIsInUse(Context context){
        TelecomManager tm = (TelecomManager)context.getSystemService(Context.TELECOM_SERVICE);
        return tm.isInCall();
    }
    

相关文章

网友评论

    本文标题:Android 判断是否在通话中

    本文链接:https://www.haomeiwen.com/subject/uodufctx.html