Android调用系统发送彩信,试过多种方法,在各种机型上不适应

Intent intent = new Intent(Intent.ACTION_SENDTO);
intent.setData(Uri.parse("smsto:"));
intent.putExtra("exit_on_sent", true);
try {
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(ImageUtils.saveBitmap(screenshot))));
} catch (IOException e) {
e.printStackTrace();
}
startActivity(intent);

            这种方法在华为荣耀4C上无法把图片传过去
不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^