打开短信发送界面,并指定号码

        Intent intent = new Intent();
        intent.setAction(Intent.ACTION_SENDTO);
        intent.setData(Uri.parse("sms:10086"));
        intent.addCategory("android.intent.category.DEFAULT");
        this.startActivity(intent);

 

posted @ 2015-11-19 15:12  一路向北中  阅读(398)  评论(0编辑  收藏  举报