このように画像を壁紙/ 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 パスを変更しようとしましたが、成功しませんでした。