android Intent

来源:互联网 发布:淘宝客采集程序源码 编辑:程序博客网 时间:2024/05/16 18:33
public void onClick(View v) {Uri uri = Uri.parse("smsto://10086");Intent intent = new Intent(Intent.ACTION_SENDTO , uri);intent.putExtra("sms_body", "11");Android_MenuActivity.this.startActivity(intent);}

原创粉丝点击