天天看点

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