react-native-send-intent icon indicating copy to clipboard operation
react-native-send-intent copied to clipboard

Intent.ACTION_SET_WALLPAPER In React Native

Open ibelgin opened this issue 4 years ago • 0 comments

Hope We Can Have Intent.ACTION_SET_WALLPAPER In React Native. There are no modules out there with this functionality.

I searched a lot on google but couldn't find any solution to set wallpaper in react native but came across intent and found solutions like the one's below

    Intent intent = new Intent(Intent.ACTION_ATTACH_DATA);
    intent.addCategory(Intent.CATEGORY_DEFAULT);
    intent.setDataAndType(uri, "image/jpeg");
    intent.putExtra("mimeType", "image/jpeg");
    this.startActivity(Intent.createChooser(intent, "Set as:"));
Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER);
startActivity(Intent.createChooser(intent, "Select Wallpaper"));

There are Mostly Unanswered Questions In Stackoverflow

https://stackoverflow.com/questions/18700161/android-set-wallpaper-using-intent

ibelgin avatar Dec 17 '20 02:12 ibelgin