How to add SMSC feature into Android

                         

 

                                                        How to add SMSC feature into your RIL

 First you should understand the process of the RIL

1.    RIL Architecture

 

2   RIL Process

Boot time : RIL Daemon reads rild.libpath and rild.libargs to determinte vendor RIL lib to use and pass any arguments to Vendor RIL .(/system/build.prop)--->

Ril Daemon load the vendor ril lib and calls RIL_Init to initialize the RIL and obtain a reference to RIL functions----->

RIL daemon calls RIL_register on the Android telephony stack, providing a reference to the Vendor RIL functions

3 .  GetSMSC Process

4. UI design

network_setting.xml

+  <PreferenceScreen
+       android:key="button_smsc_key"
+       android:title="@string/smsc_settings"
+       android:summary="set and get the smsc number">
+    </PreferenceScreen>


Phone/src/com/android/phone/Settings.java

+       else if(preference == mButtonSmscKey){
+               Intent intent_smsc = new Intent(this,SmscSettings.class);
+               intent_smsc.setAction(Intent.ACTION_MAIN);
+               startActivity(intent_smsc);
+               return true;
+       }

 

Phone/src/com/android/phone/SmscSettings.java

//handle the message to obtail message from the framework layer.

private String smsc_get() {
            phone.getSmscAddress(obtainMessage(EVENT_GET_SMSC_DONE));
                return SMSC;
        }

        private void smsc_set(String smsc) {
            SMSC = smsc;
            phone.setSmscAddress(smsc, null);

        }

That's all.  

link :http://www.kandroid.org/android_pdk/telephony.html#androidTelephonyRILIntro

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值