Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 調用系統短信頁面

調用系統短信頁面

編輯:關於Android編程

        /**
* 跳轉到系統發送短信頁面
*/
private void goSystemSMS() {
Intent intent = new Intent(Intent.ACTION_VIEW); 
intent.putExtra("address", "186..."); 
intent.putExtra("sms_body", "短信內容"); 
intent.setType("vnd.android-dir/mms-sms"); 
startActivity(intent);
}

作者:xue_wei_love
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved