不要跳到写短信界面,直接发送短信

不用跳到写短信界面,直接发送短信发短信先加入权限user-permission android:nameandroid.permission.SE

不用跳到写短信界面,直接发送短信

发短信

先加入权限

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

创建Intente对象

Intent intent=new Intent();

intent.setAction(Intent.ACTION_SENDTO);

intent.setData(Uri.parse("smsto:12312"));//发送的地址

intent.putExtra("sms_body","hello");//注意这是发送短信时的默认写入的信息,sms_body是默认的不能改

startActivity(intent);