I want to create a chooser where to find the LockScreen/HomeScreen. Something like this:
I tried like this:
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_USER_BACKGROUND);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), 1);
with different actions, but nothing seems to work. For the screenshot I selected a photo from gallery and then "set as" option. I also downloaded some apps that have same feature, so I suppose it is possible. I just don't figure out how? Thanks for any help!