我想通过Whatsapp发送我的应用图片。 我使用了这段代码,但在选择了联系人之后,我会避免点击"已发送"在它要求你输入标题的方框中,我希望我可以跳过这一步,你能以某种方式吗?
Intent sendIntent = new Intent();
Uri selectedImageUri = data.getData();
sendIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
sendIntent.setPackage("com.whatsapp");
sendIntent.putExtra(Intent.EXTRA_STREAM, selectedImageUri);
sendIntent.setType("image/*");
startActivity(sendIntent);
提前致谢。