zoukankan      html  css  js  c++  java
  • 高版本自动接听电话方法

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

    高版本自动接听电话方法:
                try {
                    Method method = Class.forName("android.os.ServiceManager")
                            .getMethod("getService", String.class);
                   
                    IBinder binder = (IBinder) method.invoke(null, new Object[]{TELEPHONY_SERVICE});
                    ITelephony telephony = ITelephony.Stub.asInterface(binder);
                    telephony.answerRingingCall();               
                } catch (NoSuchMethodException e) {
                    Log.d("Sandy", "", e);
                } catch (ClassNotFoundException e) {
                    Log.d("Sandy", "", e);
                }catch (Exception e) {
                    Log.d("Sandy", "", e);
                    try{
                        Log.e("Sandy", "for version 4.1 or larger");
                        Intent intent = new Intent("android.intent.action.MEDIA_BUTTON");
                        KeyEvent keyEvent = new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_HEADSETHOOK);
                        intent.putExtra("android.intent.extra.KEY_EVENT",keyEvent);

                        sendOrderedBroadcast(intent,"android.permission.CALL_PRIVILEGED");
                    } catch (Exception e2) {
                        Log.d("Sandy", "", e2);
                        Intent meidaButtonIntent = new Intent(Intent.ACTION_MEDIA_BUTTON);
                                   KeyEvent keyEvent = new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_HEADSETHOOK);
                                   meidaButtonIntent.putExtra(Intent.EXTRA_KEY_EVENT,keyEvent);
                                   sendOrderedBroadcast(meidaButtonIntent, null);
                    }
                }

    文章转载于网络,如有侵权,请原创留言;内容如有不妥,请各位园友提宝贵意见或建议。所有文章均处于编辑状态。。。。。。百度贴吧:流水小桥吧 如有问题,请点击页面左上角“给我写信”发邮件留言!
  • 相关阅读:
    代码规范总结
    git记住提交密码的技巧
    php foreach遍历
    flight学习笔记
    the resource is not on the build path of a php project
    Google安装postman插件
    PHP开发框架CodeIgniter
    eclipse中php项目开发的环境配置说明
    MyBatis入门篇
    mybatis学习(十二)——mybatis逆向工程
  • 原文地址:https://www.cnblogs.com/flyoung/p/4930993.html
Copyright © 2011-2022 走看看