Android 2.3发短信详细流程(2)

来源:未知 责任编辑:责任编辑 发表时间:2015-03-01 01:34 点击:

3. 第二阶段:IccSmsInterfaceManagerProxy.java(frameworks/base/telephony/java/com/android/internal/telephony/IccSmsInterfaceManagerProxy)

我们看IccSmsInterfaceManagerProxy的sendText()方法核心代码:

view plaincopy to clipboardprint?private IccSmsInterfaceManager mIccSmsInterfaceManager; 
...... 
public void sendText(String destAddr, String scAddr, 
            String text, PendingIntent sentIntent, PendingIntent deliveryIntent) { 
        mIccSmsInterfaceManager.sendText(destAddr, scAddr, text, sentIntent, deliveryIntent); 
    } 
private IccSmsInterfaceManager mIccSmsInterfaceManager;
......
public void sendText(String destAddr, String scAddr,
            String text, PendingIntent sentIntent, PendingIntent deliveryIntent) {
        mIccSmsInterfaceManager.sendText(destAddr, scAddr, text, sentIntent, deliveryIntent);
    }
继续调用,此时调用的是IccSmsInterfaceManager对象的sendText()方法,那IccSmsInterfaceManager是什么玩意??

4. 第三阶段:IccSmsInterfaceManager.java(frameworks/base/telephony/java/com/android/internal/telephony/IccSmsInterfaceManager.java)

从代码看出IccSmsInterfaceManager是一个继承了ISms.Stub的抽象类,相关核心代码如下:

view plaincopy to clipboardprint?protected SMSDispatcher mDispatcher; 
public void sendText(String destAddr, String scAddr, 
            String text, PendingIntent sentIntent, PendingIntent deliveryIntent) { 
        mPhone.getContext().enforceCallingPermission( 
                "android.permission.SEND_SMS", 
                "Sending SMS message"); 
        if (Log.isLoggable("SMS", Log.VERBOSE)) { 
            log("sendText: destAddr=" + destAddr + " scAddr=" + scAddr + 
                " text='"+ text + "' sentIntent=" + 
                sentIntent + " deliveryIntent=" + deliveryIntent); 
        } 
        mDispatcher.sendText(destAddr, scAddr, text, sentIntent, deliveryIntent); 
    } 
protected SMSDispatcher mDispatcher;

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • android 屏幕保护
  • Android 完全退出程序
  • 原创:Android应用开发-Andorid歌词秀,含源码
  • 众多Android 开源项目推荐,给力工作给力学习
  • Android成长的幕后推手:工程师鲁宾
  • MIUI:10个亮点及5处不足
  • Android歌词秀1.5版
  • 自己开发计算器(4)-完成!源代码公开!
  • Android开发者指南(29) —— USB Host and Accessory
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索 - 移动版 - 返回顶部
Copyright © 2008-2013 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1