我想从我的手机发送一个彩信而不询问意图创建选择器,我把我的编码放在下面,我没有在编码中添加 intent.createchooser 但是当我运行应用程序时它会显示创建选择器对话框,
Intent intent1=new Intent(Intent.ACTION_SEND);
intent1.putExtra("address",to.getText().toString());
intent1.putExtra("sms_body",body);
intent1.setType("text/*");
startActivity(intent1);
告诉我如何在不询问 createchooser 的情况下发送彩信