您的位置:首页 > 移动开发 > Android开发

android 拨打电话与发送短信

2016-04-25 13:39 519 查看
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);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 短信 电话