最近在看一些有关反射和aidl远程服务控制的类,自己也小写了这么一个Android 电话的反射调用机制实现静默接听电话demo 自己总结出来,以供查阅,若是还有其他问题,希望大家指出。

首先要调用系统的接听电话功能,就要用到TelephonyManager和ITelephony类,其中TelephonyManager是可访问的,ITelephony不可访问,但是我们要用的功能:接听电话和拒绝电话被封装在ITelephony里面了。对此我们便要用到反射和aidl远程服务控制的知识。详细知识,不在阐释。

第一步:

在建好的工程中添加包com.android.internal.telephony,复制一下内容到新创建的ITelephony.aidl文件中

/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.internal.telephony;
import android.os.Bundle;
import java.util.List;
/**
* Interface used to interact with the phone.  Mostly this is used by the
* TelephonyManager class.  A few places are still using this directly.
* Please clean them up if possible and use TelephonyManager insteadl.
*
* {@hide}
*/
interface ITelephony {
/**
* Dial a number. This doesn't place the call. It displays
* the Dialer screen.
* @param number the number to be dialed. If null, this
* would display the Dialer screen with no number pre-filled.
*/
void dial(String number);
/**
* Place a call to the specified number.
* @param number the number to be called.
*/
void call(String number);
/**
* If there is currently a call in progress, show the call screen.
* The DTMF dialpad may or may not be visible initially, depending on
* whether it was up when the user last exited the InCallScreen.
*
* @return true if the call screen was shown.
*/
boolean showCallScreen();
/**
* Variation of showCallScreen() that also specifies whether the
* DTMF dialpad should be initially visible when the InCallScreen
* comes up.
*
* @param showDialpad if true, make the dialpad visible initially,
*                    otherwise hide the dialpad initially.
* @return true if the call screen was shown.
*
* @see showCallScreen
*/
boolean showCallScreenWithDialpad(boolean showDialpad);
/**
* End call or go to the Home screen
*
* @return whether it hung up
*/
boolean endCall();
/**
* Answer the currently-ringing call.
*
* If there's already a current active call, that call will be
* automatically put on hold.  If both lines are currently in use, the
* current active call will be ended.
*
* TODO: provide a flag to let the caller specify what policy to use
* if both lines are in use.  (The current behavior is hardwired to
* "answer incoming, end ongoing", which is how the CALL button
* is specced to behave.)
*
* TODO: this should be a oneway call (especially since it's called
* directly from the key queue thread).
*/
void answerRingingCall();
/**
* Silence the ringer if an incoming call is currently ringing.
* (If vibrating, stop the vibrator also.)
*
* It's safe to call this if the ringer has already been silenced, or
* even if there's no incoming call.  (If so, this method will do nothing.)
*
* TODO: this should be a oneway call too (see above).
*       (Actually *all* the methods here that return void can
*       probably be oneway.)
*/
void silenceRinger();
/**
* Check if we are in either an active or holding call
* @return true if the phone state is OFFHOOK.
*/
boolean isOffhook();
/**
* Check if an incoming phone call is ringing or call waiting.
* @return true if the phone state is RINGING.
*/
boolean isRinging();
/**
* Check if the phone is idle.
* @return true if the phone state is IDLE.
*/
boolean isIdle();
/**
* Check to see if the radio is on or not.
* @return returns true if the radio is on.
*/
boolean isRadioOn();
/**
* Check if the SIM pin lock is enabled.
* @return true if the SIM pin lock is enabled.
*/
boolean isSimPinEnabled();
/**
* Cancels the missed calls notification.
*/
void cancelMissedCallsNotification();
/**
* Supply a pin to unlock the SIM.  Blocks until a result is determined.
* @param pin The pin to check.
* @return whether the operation was a success.
*/
boolean supplyPin(String pin);
/**
* Handles PIN MMI commands (PIN/PIN2/PUK/PUK2), which are initiated
* without SEND (so <code>dial</code> is not appropriate).
*
* @param dialString the MMI command to be executed.
* @return true if MMI command is executed.
*/
boolean handlePinMmi(String dialString);
/**
* Toggles the radio on or off.
*/
void toggleRadioOnOff();
/**
* Set the radio to on or off
*/
boolean setRadio(boolean turnOn);
/**
* Request to update location information in service state
*/
void updateServiceLocation();
/**
* Enable location update notifications.
*/
void enableLocationUpdates();
/**
* Disable location update notifications.
*/
void disableLocationUpdates();
/**
* Enable a specific APN type.
*/
int enableApnType(String type);
/**
* Disable a specific APN type.
*/
int disableApnType(String type);
/**
* Allow mobile data connections.
*/
boolean enableDataConnectivity();
/**
* Disallow mobile data connections.
*/
boolean disableDataConnectivity();
/**
* Report whether data connectivity is possible.
*/
boolean isDataConnectivityPossible();
Bundle getCellLocation();
/**
* Returns the neighboring cell information of the device.
*/
int getCallState();
int getDataActivity();
int getDataState();
/**
* Returns the current active phone type as integer.
* Returns TelephonyManager.PHONE_TYPE_CDMA if RILConstants.CDMA_PHONE
* and TelephonyManager.PHONE_TYPE_GSM if RILConstants.GSM_PHONE
*/
int getActivePhoneType();
/**
* Returns the CDMA ERI icon index to display
*/
int getCdmaEriIconIndex();
/**
* Returns the CDMA ERI icon mode,
* 0 - ON
* 1 - FLASHING
*/
int getCdmaEriIconMode();
/**
* Returns the CDMA ERI text,
*/
String getCdmaEriText();
/**
* Returns true if CDMA provisioning needs to run.
*/
boolean getCdmaNeedsProvisioning();
/**
* Returns the unread count of voicemails
*/
int getVoiceMessageCount();
/**
* Returns the network type
*/
int getNetworkType();
/**
* Return true if an ICC card is present
*/
boolean hasIccCard();
}

保存后ADT会自动的在gen目录下生成相应的包和.java文件

第二步:

应用反射技术(请自行查阅)

新建类PhoneUtil

主要写两个方法

public class PhoneUtil {
/**
* 运用反射技术获得ITelephony
* @param telMgr
* @return
* @throws Exception
*/
public static ITelephony getITelephony(TelephonyManager telMgr) throws Exception{
Method method = telMgr.getClass().getDeclaredMethod("getITelephony");
method.setAccessible(true);
return (ITelephony)method.invoke(telMgr);//发回ITelephony
}
static public void printAllInform(Class clsShow) {
try {
// 取得所有方法
Method[] hideMethod = clsShow.getDeclaredMethods();
int i = 0;
for (; i < hideMethod.length; i++) {
Log.e("method name", hideMethod[i].getName());
}
// 取得所有常量
Field[] allFields = clsShow.getFields();
for (i = 0; i < allFields.length; i++) {
Log.e("Field name", allFields[i].getName());
}
} catch (SecurityException e) {
// throw new RuntimeException(e.getMessage());
e.printStackTrace();
} catch (IllegalArgumentException e) {
// throw new RuntimeException(e.getMessage());
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

第三步:

创建一个服务用于监听电话状态和自动接听电话事件

/**
* 自动接听来电类广播
* @author Owner
*
*/
public class TPhoneReceiver extends Service {
private TelephonyManager tlmar ;
@Override
public void onCreate() {
// TODO Auto-generated method stub
super.onCreate();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
// TODO Auto-generated method stub
tlmar = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
tlmar.listen(new CallPhoneStateListener(), //注册手机电话监听
CallPhoneStateListener.LISTEN_CALL_STATE);
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
class CallPhoneStateListener extends PhoneStateListener{
@Override
public void onCallStateChanged(int state, String incomingNumber) {
// TODO Auto-generated method stub
switch (state) {
case TelephonyManager.CALL_STATE_IDLE:// 空闲
break;
case TelephonyManager.CALL_STATE_OFFHOOK:// 接听
break;
case TelephonyManager.CALL_STATE_RINGING:// 来电
try {
Toast.makeText(getApplicationContext(), "dddd", 1).show();
ITelephony it = PhoneUtil.getITelephony(tlmar);
it.silenceRinger();
//  it.endCall();//拒接
it.answerRingingCall();//自动接听
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
break;
default:
break;
}
}
}
}
并且在AndroidManifest.xml李进行注册
 
<service android:name=".TPhoneReceiver"
android:priority="10000" >
<intent-filter>
<action android:name="com.example.baidumap.TPhoneReceiver" />
</intent-filter>
</service>

第四步:
创建主activity
用于启动服务
Intent tIntent = new Intent(this , TPhoneReceiverBordcast.class);
tIntent.setAction("com.example.baidumap.TPhoneReceiver");
startService(tIntent);
@Override
protected void onDestroy() {
// TODO Auto-generated method stub
if (tIntent != null) {
stopService(tIntent);
}
super.onDestroy();
}
最后别忘记了在AndroidManifest.xml李进行权限声明(主要权限)
         <uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE"></uses-permission>
<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
到这里已经OK了!
启动模拟器并看看结果吧!

Android 电话的反射调用机制实现自动接听电话相关推荐

  1. android 4.0以上系统如何实现自动接听电话

    我用网上的代码如下: [code] synchronized void autoAnswerCall(){     Context context = TApplication.nowApplicat ...

  2. Android中自动接听电话的功能

    最近,需要完成一个自动化测试工具,来测试一些模块的功能,其中有些功能需要接通电话后才可以使用,因为这个工具是完全自动化的,所以需要处理自动接听电话 在4.1以前Android是提供了接口可以直接调用接 ...

  3. Android 自动接听电话和挂断

    注意:android2.3版本及以上不支持下面的自动接听方法.(会抛异常:java.lang.SecurityException: Neither user xxxxx nor current pro ...

  4. Android入门篇(四):自动拨打电话、手动拨打电话

    Android入门篇(四):自动拨打电话.手动拨打电话 一.前言 最近在做的项目需要用到自动拨号的这一功能,17年写了一个,最近拿出来用发现不能使用了,后面查资料据说是因为Android 6(api2 ...

  5. Android P+通过反射调用系统API实现高级功能

    Android P+通过反射调用系统API实现高级功能 1. 打开隐藏API 1.1 导入FreeReflection包 1.2 打开隐藏API 2. 反射系统服务并调用相应方法 通过反射调用系统AP ...

  6. android 5.0 自动接听电话

    android 5.0 自动接听电话 new Thread(new Runnable() {@Overridepublic void run() {try {Runtime.getRuntime(). ...

  7. linphone 自动接听电话

    自动接听电话 strings.xml: <string name="pref_auto_answer">Auto answer incoming calls</s ...

  8. 高版本自动接听电话方法

    原文地址:http://www.eoeandroid.com/forum.php?mod=viewthread&tid=894679&page=1&_dsign=b92c470 ...

  9. Android 自动接听电话

    1. android 2.3以下版本(不包括2.3) http://bbs.51cto.com/viewthread.php?tid=1078059&extra=&page=1 中的& ...

最新文章

  1. 将BST转换为有序的双向链表!
  2. mysql C语言API接口及实例
  3. 计算机三级网络技术注意事项,2015计算机三级考试《网络技术》复习要点:压缩技术...
  4. 在reader中勾选pdf复选框_Adobe Acrobat和Reader PDF文件处理缓冲区溢出漏洞
  5. Java 全半角转换
  6. 【李宏毅2020 ML/DL】P25 ELMO, BERT, GPT
  7. 摩托罗拉linux专属游戏,摩托罗拉E680软件以及游戏应用大全
  8. layui表单验证范例
  9. 实习生去公司都干些啥
  10. C# winform 魔兽MH全图制作教程(3):魔兽1.20E.1.24B.1.24E全图内存地址 转自breeze...
  11. 工具相关累计 慢慢更新防止忘记
  12. 【程序厨】学习 Redis ,可以看看这个
  13. 000 高数预备知识
  14. Win10系统下Eclipse+ADT+SDK配套安装(避免遇坑)
  15. html 5 调用手机条码扫描,vue h5页面如何实现扫一扫功能,扫条形码获取编码
  16. 2021年网络搭建与应用国赛样题6选路部分参考答案
  17. 深度图像+rgb转化点云数据、点云数据打开、显示以及保存
  18. 计算机专业学生新学期必读好书推荐
  19. windows 安装 xhprof
  20. php取当前是pc还是手机号,PHP 获取访问用户的 IP, 地址 , 访问设备(手机还是PC)并返回手机类型和PC浏览器类型...

热门文章

  1. 一次成功的创业至少需要10年的时间
  2. 定语从句三大翻译方法
  3. 爬虫日记(85):Scrapy的ExecutionEngine类(三)
  4. #acm#No Brainer
  5. PS5运行Linux,索尼发布新驱动 PS5手柄现已支持Linux系统用户
  6. 如何进行网站的本地测试
  7. 驾校管理系统的设计与实现/驾校信息管理系统
  8. sai实现空心文字的教程
  9. 2021云南曲靖富源区高考成绩查询,云南富源第一中学2021年录取分数线
  10. Adobe全家桶官方用户中文使用指南网址链接