Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android 調用系統打電話和發短,懶得記

android 調用系統打電話和發短,懶得記

編輯:關於Android編程

Intent intent = new Intent();         intent.setAction(Intent.ACTION_CALL);         intent.setData(Uri.parse("tel:13800138000"));         startActivity(intent);                        Intent intent2 = new Intent();         intent2.setAction(Intent.ACTION_SENDTO);         intent2.setData(Uri.parse("smsto:5554"));         intent2.putExtra("sms_body", "發短信");         startActivity(intent2);   
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved