android 撥打電話與發送短信


Phone 電話號碼

撥打電話 :

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

	Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+ phone));
	startActivity(intent);
短信:

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

Uri smsToUri = Uri.parse("smsto:" + phone);
				Intent mIntent = new Intent(
						android.content.Intent.ACTION_SENDTO, smsToUri);
				startActivity(mIntent);

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章