2

我正在尝试为用户提供一个选项,可以像这样将图像设置为墙纸/whatsapp dp。 在此处输入图像描述

但我被这段代码困住了

Uri sendUri = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.a_day_without_thinking_mobile);

Intent intent = new Intent(Intent.ACTION_ATTACH_DATA);
intent.setDataAndType(sendUri, "image/jpg");
intent.putExtra("mimeType", "image/jpg");
startActivity(Intent.createChooser(intent,"Set As"));

它显示一个对话框,没有应用程序可以执行此操作。我也尝试通过这种方法检查我的 Uri

        ContentResolver cr = getContentResolver();
        String[] projection = {MediaStore.MediaColumns.DATA};
        Cursor cur = cr.query(sendUri, projection, null, null, null);
        if (cur != null) {
            if (cur.moveToFirst()) {
                String filePath = cur.getString(0);

                if (new File(filePath).exists()) {
                    Log.d("URI: ","File path exist");
                } else {
                    Log.d("URI: ","File not found");
                }
            } else {
                Log.d("URI: ","URI ok but no enty found");
            }
            cur.close();
        } else {
            Log.d("URI: ","URI was invalid for some other reason");
        }

它总是返回 URI 无效。但我确定该图像是有效的 jpg 并且存在于 raw 文件夹中。我尝试更改 URI 路径但没有成功。

4

1 回答 1

0

Android文件读取格式已更改后targetSdkVersion >= 24

您可以在此处找到详细信息; https://stackoverflow.com/a/38858040/1367450

于 2019-09-19T17:40:24.613 回答