android實現打電話 發短信功能

之前看了李興華的視頻,他在android手機中實現發短信 打電話功能有點麻煩,最近做畢設需要用這個功能,在網上找了一些比較簡單方法,調用系統就可以

1  打電話

 在Manifest中添加權限

 <uses-permission android:name="android.permission.CALL_PHONE"/>

 

後再Activity中添加代碼

case R.id.call_user:
    if (usertel.length() > 0) {
    Intent intent = new Intent("android.intent.action.CALL",
    Uri.parse("tel:" + usertel));
   startActivity(intent);
	}
   break;

 

 

2 發短信功能

在Manifest中添加權限

 

<uses-permission android:name="android.permission.SEND_SMS"/>


後再Activity中添加代碼

case R.id.sms_user:
     if (usertel.length() > 0) {
     Intent intent = new Intent(
     Intent.ACTION_SENDTO,
     Uri.parse("smsto:" +username));
     startActivity(intent);
	}
     break;



 

發佈了24 篇原創文章 · 獲贊 8 · 訪問量 11萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章