I'm working wallpaper application and having a problem with set wallpaper intent. I'm tried FileProvider, nothing changed.
My code showing this intent: (1) https://i.ibb.co/RcW15qb/1.png
after select: (2) https://i.ibb.co/nsQNvms/Screenshot-1568305811.png
but I want like this: (3) https://i.ibb.co/F53p6sv/Screenshot-1568305398.png
fun setWallpaper (uri:Uri) {
val intent = Intent(Intent.ACTION_ATTACH_DATA)
intent.addCategory(Intent.CATEGORY_DEFAULT)
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
intent.setDataAndType(uri, "image/*")
intent.putExtra("mimeType", "image/*")
startActivity(Intent.createChooser(intent, "Set as:"))}
I'm searched and tried smiliar set wallpaper intent example. Working but picture 1 and 2. I need intent like picture 3
Edit: I found but without scrolling and fixed options
val intent = Intent("android.service.wallpaper.CROP_AND_SET_WALLPAPER")