您的位置:首页 > 其它

跳转到系统短信界面和预设短信内容

2014-09-08 13:48 148 查看
Intent intent = new Intent(Intent.ACTION_VIEW);

intent.setType("vnd.android-dir/mms-sms");

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//非Activity下跳转

NoteSample noteSample = (NoteSample) noteListAdapter

.getItem(MainActivity.current_position);

intent.putExtra("sms_body", noteSample.getContent());

getApplicationContext.startActivity(intent);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐