首 页 | 新 闻 | Symbian | Android| Windows Mobile | J2ME | 下载中心 | 游戏策划招聘与求职 | 购书指南 | 视频教程
您现在的位置: 开发视界 >> Symbian >> Symbian开发 >> 正文
symbian 下面调用电话拨号的方法
作者:Wayne    文章来源:www.3g918.com.cn    更新时间:2006-3-25 11:33:40
开发电话本应用的时候,时常会需要直接拨打对方的电话号码。
那么,如何在symbian s60平台上通过代码让自己的手机拨号呢?
下面的代码可能会帮助你的:

加入头文件:
#include <etel.h>            // for dial operatons
在mmp文件中需要加入:
LIBRARY         etel.lib        // for dial operations
TBool CMcAppUi::dialTel(TDesC & telNum) {
        _LIT(KPHONE_DRV, "phonetsy.tsy") ;
        //Create a connection to the tel server
        RTelServer server;
        CleanupClosePushL(server);
        User::LeaveIfError(server.Connect());
       
        //Load in the phone device driver
        User::LeaveIfError(server.LoadPhoneModule(KPHONE_DRV));
       
        //Find the number of phones available from the tel server
        TInt numberPhones;
        User::LeaveIfError(server.EnumeratePhones(numberPhones));
       
        //Check there are available phones
        if (numberPhones < 1)        {
                User::Leave(KErrNotFound);
        }
       
        //Get info about the first available phone
        RTelServer::TPhoneInfo info;
        User::LeaveIfError(server.GetPhoneInfo(0, info));
       
        //Use this info to open a connection to the phone, the phone is identified by its name
        RPhone phone;
        CleanupClosePushL(phone);
        User::LeaveIfError(phone.Open(server, info.iName));
       
        //Get info about the first line from the phone
        RPhone::TLineInfo lineInfo;
        User::LeaveIfError(phone.GetLineInfo(0, lineInfo));
       
        //Use this to open a line
        RLine line;
        CleanupClosePushL(line);
        User::LeaveIfError(line.Open(phone, lineInfo.iName));
       
        //Open a new call on this line
        TBuf <100> newCallName;
        RCall call;
        CleanupClosePushL(call);
        User::LeaveIfError(call.OpenNewCall(line, newCallName));
       
        //newCallName will now contain the name of the call
        User::LeaveIfError(call.Dial(telNum));
       
        //Close the phone, line and call connections and remove them from the cleanup stack
        //NOTE: This does not hang up the call
        CleanupStack::PopAndDestroy(3);//phone, line, call
       
        //Unload the phone device driver
        User::LeaveIfError(server.UnloadPhoneModule(KPHONE_DRV));
       
        //Close the connection to the tel server and remove it from the cleanup stack
        CleanupStack::PopAndDestroy(&server);
        return ETrue ;
}
这段代码很好用的,在多款s60真机上测试过
相关文章:
SAX与DOM之间的区别
如何在进程间共享文件句柄
能力(Capabilities)
在S60 3rd的手机上显示所有已安装程序的Uid
S60平台:Bluetooth API开发伙伴指南——蓝牙开发接口V2的结构
创建不提示用户使用哪种方法连接或者选择哪个GPRS接入点的Internet连接
在Symbian exe 程序中显示图形
利用Recognizer编写自己的开机自启动程序
 

站点地图 | 加入收藏 | 联系站长 | 广告服务 |
QQ:280529124  Tel:0592-8271361 辽ICP备05021703号