sindresorhus / wallpaper

Manage the desktop wallpaper
MIT License
1.05k stars 92 forks source link

Wallaper Setting In Android #72

Closed ibelgin closed 3 years ago

ibelgin commented 3 years ago

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