通过 android share intent hangout 共享图像时,在发送图像之前出现的图像预览屏幕内显示旧图像,但 whatsapp 和 facebook 显示当前选择的图像本身,
即使它在单击发送后在预览中显示错误的图像,在聊天中也只会显示正确的图像。
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.putExtra(Intent.EXTRA_STREAM, uri);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
startActivity(Intent.createChooser(intent, "Share news via.."));
任何人都可以帮助解决这个问题