Questions tagged [wallpaper]

Wallpaper is the background image on one's "desktop" or "home screen."

Wallpapers vary from system to system both in function and nomenclature. In Mac OS X, the wallpaper is called the "desktop picture." It is a static image or series of images that the operating system cycles through. Its function is purely decorative. In addition to traditional (static) wallpapers, Android (v2.1+) offers "live wallpapers." Live wallpapers are similar to normal applications, though slightly different (they are services rather than activities, so their capabilities are not quite the same). Live wallpapers extend the traditional wallpaper concept by allowing for interactivity, animation, and access to system functions. One of the challenges facing the live wallpaper developer is that the wallpaper is often overlaid with icons, widgets, and the like, beyond the programmer's ability to control or often even to detect.

763 questions
0
votes
1 answer

Is there a viewcontroller to make current photo or image a wallpaper using the standard Action?

I've spend an inordinate amount of time searching for a view-controller that will bring up the UIActionSheet to make the current picture the wallpaper (similar to the one used to send an image in an email: MFMessageComposeViewController). I noticed…
sAguinaga
  • 638
  • 13
  • 31
0
votes
1 answer

Android - Change Live Wallpaper configuration while in Live Wallpaper Picker

I'm having some FC in Live Wallpaper Picker because it sounds like the framerate of my Live Wallpaper (40fps) causes FC due to a buffer issue. Is it possible to change Live Wallpaper configuration while loaded in Live Wallpaper Picker? This way I'll…
Mariux
  • 494
  • 6
  • 19
0
votes
1 answer

getting http request from pexel api

i am creating a wallpaper app in which i am fetching wallpaper through an pexel api. but when i making a variable of response and give it value of http.get(url); and here i am pasting the link of curated wallpaper as given in api but it is giving an…
user14836914
0
votes
1 answer

Change Windows 10 Background Solid Color in Python

I am aware that with ctypes.windll.user32.SystemParametersInfoW(20, 0, pathToImage, 3) I can change the wallpaper image and by setting the pathToImage to an empty string I would effectively have no image as wallpaper, thus I will see the solid…
Programer Beginner
  • 1,377
  • 6
  • 21
  • 47
0
votes
1 answer

flutter , how to set image network as wallpaper 2021

I am working on an application to set wallpapers, which comes to the application through the link "imgUrl", but when I want to set a specific image as wallpaper it gives me this error, [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled…
flutterde
  • 1
  • 1
0
votes
1 answer

List of WallpaperService onCommands?

What's the list of actions that the WallpaperService onCommand can receive? Couldn't find it in the docs...
U Avalos
  • 6,538
  • 7
  • 48
  • 81
0
votes
3 answers

My Batch file is only executing if it is in the right mood

I am trying to change my wallpaper with a relatively simple batch file: reg add "HKEY_CURRENT_USER\control panel\desktop" /v wallpaper /t REG_SZ /d C:\Users\*censored*\Picture.jpg /f RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters exit…
0
votes
0 answers

How to align new wallpaper using Python in Windows

After changing the background correctly with the famous ctypes import ctypes ctypes.windll.user32.SystemParametersInfoW(SPI_SETDESKWALLPAPER, 0, fullpathofimage, 0) the image was not fitting correctly in the screen, as Windows has 'Tile' as default…
FLASH3G
  • 23
  • 4
0
votes
1 answer

Making a wallpaper with a function on Android

The idea of my app, is to make a wallpaper, which I guess has a functioning clock (time engine) on it, and it would print when the current school hour ends/starts. Obviously, that's not it, and there will be more features in it, but my question is…
filip
  • 13
  • 5
0
votes
0 answers

Xamarin - Wallpaper error: no non-static method "Landroid/app...."

I want to get and set wallpaper image but it gives to me error in Android 6.0 API 23 but it is working great in Android 9. I also tried Application.Context and this keyword instead of ApplicationContext My exception; Exception image My…
0x000000F4
  • 60
  • 8
0
votes
1 answer

Set Image Wallpaper Intent in Flutter

Hi i have tried different ways to set my downloaded images from server as wallpaper using the native android intent in flutter but so far i am unable to implement it. I have tried the intent package from pub.dev flutter but this code doesn't make my…
0
votes
1 answer

Issue in wallpapermanager in kotlin

I am using a button with id home_screen to set up an image in the framelayout fl_iv as homescreen wallpaper. But when i click on that, it sets up the image as both homescreen wallpaper and lockscreen wallpaper. How to make it just change the home…
0
votes
1 answer

how to implement string list from _ListItem to assetPath?

i've been working with wallpaper app. i manage to call the path list for wallpaper, i can make this work on image card list but i can't manage to do it work with assetPath for WallpaperManager Please help, is there any way to do it? Future
Fery Senpai
  • 3
  • 1
  • 2
0
votes
1 answer

how to add favorite button in my offline app in android studio

i have app for quotes.in which i have download and share option. and it is offline in which i have store the quotes image drawable folder . but if the user click any of my image then , if he like to add favorite then the image should save in…
0
votes
1 answer

Making a wallpaper app in Kotlin. Can't seem to get the wallpaper to fit the user screen

I am making a wallpaper app. I am taking images from my firebase database. But when i tap on set as wallpaper button in my app the wallpaper leaves some empty black space at the top as well as at the bottom. Can't seem to get it to work even after…