android中調用系統的傳送簡訊、發送郵件、打電話功能

來源:互聯網
上載者:User

標籤:android   style   blog   class   code   tar   

1 調用傳送簡訊功能:

Uri smsToUri = Uri.parse("smsto:"); Intent sendIntent = new Intent(Intent.ACTION_VIEW, smsToUri);  sendIntent.putExtra("address", "123456"); //電話號碼,這行去掉的話,預設就沒有電話sendIntent.putExtra("sms_body","簡訊內容"); sendIntent.setType("vnd.android-dir/mms-sms"); startActivity(sendIntent); 2 調用發送郵件功能: Intent email = new Intent(android.content.Intent.ACTION_SEND);email.setType("plain/text");String[] emailReciver = new String[]{"[email protected]","[email protected]"}; String  emailSubject = "從問道分享來的文章";StringemailBody = internetpath;//設定郵件預設地址email.putExtra(android.content.Intent.EXTRA_EMAIL, emailReciver);//設定郵件預設標題email.putExtra(android.content.Intent.EXTRA_SUBJECT, emailSubject);//設定要預設發送的內容email.putExtra(android.content.Intent.EXTRA_TEXT, emailBody);//調用系統的郵件系統startActivity(Intent.createChooser(email, "請選擇郵件發送軟體")); 3.打電話 Intent intent = new Intent();
 intent.setAction("android.intent.action.DIAL");
 intent.setData(Uri.parse("tel:400 616 0066"));
 startActivity(intent);    <uses-permission android:name="android.permission.CALL_PHONE"/>
  <uses-permission android:name="android.permission.SEND_SMS"/>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.