1

我正在使用意图发送图像,它工作得很好,但由于某种原因,它作为 .dat 文件而不是 .png 文件发送。这是用于发送图像的代码

Intent localIntent = new Intent("android.intent.action.SEND");      
localIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("android.resource://com.t4t.stickerwhatsapp/" + videoDetails.get(pos)));
localIntent.setType("image/png"); 
startActivityForResult(localIntent,111);

有人对为什么将其作为 .dat 发送有任何想法吗?

我还尝试将 setType 设置为 image/jpg 并且仍然发送 .dat。

4

0 回答 0