用Intent打電話

2021-08-27 17:21:03 字數 975 閱讀 3851

間接打**,關鍵**如下:

string telstr = "18253100000";                      //**號碼

uri uri = uri.parse("tel:" + telstr) ; // 指定資料

intent it = new intent() ; // 例項化intent

it.setaction(intent.action_dial); // 指定action

it.setdata(uri) ; // 設定資料

startactivity(it); // 啟動activity

直接打**,關鍵**如下:

string telstr = "18253100000";                      //**號碼

uri uri = uri.parse("tel:" + telstr) ; // 指定資料

intent it = new intent() ; // 例項化intent

it.setaction(intent.action_call); // 指定action

it.setdata(uri) ; // 設定資料

startactivity(it); // 啟動activity

主要差別就在指定action。乙個為it.setaction(intent.action_dial);,乙個為it.setaction(intent.action_call);。

得加許可權:

利用Intent 傳送簡訊和打電話

引數的意義 destinationaddress 目標 號碼 scaddress 簡訊中心號碼,測試可以不填 text 簡訊內容 sentintent 傳送 中國移動 中國移動傳送失敗 返回傳送成功或失敗訊號 後續處理 即,這個意圖包裝了簡訊傳送狀態的資訊 deliveryintent 傳送 中國移...

打電話功能

方式一 直接呼叫 需要許可權,6.0及以上系統需要動態申請 val intent intent intent.action call intent.data uri.parse tel phone intent.flags intent.flag activity new task startact...

打電話 求和

題目描述 上圖是乙個 的九宮格,如你所見乙個數字對應一些字母,因此在國外企業喜歡把 號碼設計成與自己公司名字相對應。例如公司的help desk號碼是4357,因為4對應h 3對應e 5對應l 7對應p,因此4357就是help。同理,tut glop就代表888 4567 310 gino代表31...