原来是简单的跟踪解决一些研究(不幸的是由三星公司没有很好的记录):- var telnumber;
- function errCb(error)
- {
- alert("errCb: Fehler aufgetreten " + error.message);
- }
- function successCb()
- {
- // alert("Success telephone call");
- }
- function makeTelephoneCall(telno)
- {
- telnumber = telno;
- if (bDebug)
- alert("Notfallnummer rufen: " + telno);
- try
- {
- var appControl = new tizen.ApplicationControl(
- "http://tizen.org/appcontrol/operation/call", "tel:"
- + telnumber);
- tizen.application.launchAppControl(appControl, null, successCb, errCb,
- null);
- }
- catch (e)
- {
- alert("tizen.ApplicationControl not defined - " + e.message);
- }
- }
复制代码 需要设置privilige:
- <tizen:privilege name="http://tizen.org/privilege/application.launch"/>
- <tizen:privilege name="http://tizen.org/privilege/call"/>
复制代码
|