您好,登錄后才能下訂單哦!
打電話:
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:10086"));
startActivity(intent);
發短信:
SmsManager smsManager=SmsManager.getDefault();//取得短信管理器
/**發簡單的文本信息
* destinationAddress: 目標地址,發給誰
* scAddress: 來源的地址,誰發的
* text:發的內容
* sentIntent:發送廣播的狀態
* deliveryIntent: 分銷廣播狀態
*/
smsManager.sendTextMessage(number, null, message, null, null);
調用系統瀏覽器:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
//Uri content_url = Uri.parse("http:\\" + urlText);
Uri content_url = Uri.parse(url);
intent.setData(content_url);
startActivity(intent);
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。