天天看點

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);