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

set wallpaper should be this hard :(

ok i think it's throwing an exception. unfortunately i am not getting an error. it loads on the emulator and my phone but won't perform. it just says, "The application MyApp (process com.myapp) has stopped unexpectedly. Please try again." and then…
user580162
  • 73
  • 1
  • 4
0
votes
1 answer

unattended wim deployment backinfo

I have a script that deploys a WIM to a partition and makes it bootable and it uses an unattend.xml to configure the name and everything else. I include the BackInfo.exe with settings for it and when the OS boots up I have it run a logon script to…
0
votes
1 answer

How to get the Uri path from a ImageView?

I am trying to create a wallpaper application. All images will come from internet. Before of set as background, I need to crop the image. And for this, I am using an API named AndroidImageCropper. This API need of a URI object to execute the…
DanJhonatan
  • 15
  • 1
  • 4
0
votes
1 answer

Android - read active wallpaper

I am building an app that makes mass changes to Android phone configuration and saves the current settings. I am trying to find a way to read what is the current wallpaper in use; I'd like to replace it with no wallpaper ( wallpaperManager.clear();…
Yossi
  • 1,226
  • 1
  • 16
  • 31
0
votes
1 answer

Wallpaperchanger python

I've been trying to randomize my wallpaper change with python by combining code from different sources. I managed to make this code: import ctypes import os import random drive = "C:/Users/UserName/Desktop/FolderofWallpaperFolders" afolder =…
0
votes
1 answer

How do I set a wallpaper based on the Image selected?

I'm making a wallpaper app similar in functionality to Google's new wallpaper app. There is a Horizontal Scroll View at the bottom with a list of Image Buttons that when clicked will show a preview of the wallpaper in the app. How do I tell the app…
tycemang
  • 11
  • 4
0
votes
0 answers

How to count image download in wordpress default gallery?

Here is this code of while loop so and how to count download image, and like on images so this is my while loop so I get images use this code
0
votes
0 answers

Background/Wallpaper - Solid color

How do I know if my Wallpaper is a solid color ? I know I can check in the registry, under HKEY_CURRENT_USER\Control Panel\Colors, and then I get a string with 3 numbers indicating RGB. How can I know if my background is a solid color ? If that…
MathEnthusiast
  • 101
  • 1
  • 10
0
votes
0 answers

How can we automate the task of setting windows desktop wallpaper through Firefox "set wallpaper" facility?

If we open any image in firefox, and right click it, it has an option to "set it as desktop wallpaper". I am in search of a way to automate this task, such as creating a batch file which upon running will set a specific image as wallpaper using…
user7630058
0
votes
2 answers

How to change the wallpaper desktop with .bat

I'm trying to change the wallpaper desktop with this command in .bat: @echo off RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters reg add "HKCU\Control Panel\Desktop" /v Wallpaper /f /t REG_SZ /d c:\images\bella.jpg but is not working. The idea…
0
votes
1 answer

Image downsizing script creates image of bigger size in linux

I have the following script named wallpaperise.sh that takes an image and converts it to the the same own only this time with 16:9 resolution. ## Usage: ./wallpaperise.sh aw=16 #desired aspect ratio width... ah=9 #and…
0
votes
1 answer

Set wallpaper android (open dialog for asking)

I want to set image as wallpaper in my android app, there is my code: private class SetAsBackground implements View.OnClickListener { @Override public void onClick(View v) { new AsyncTask() { @Override …
0
votes
0 answers

Set wallpaper fit to screen error for bitmap drawable

I am trying to make wallpaper fit to screen in above API 23, but somehow I am getting an error for bitmap drawable. Error is "android.graphics.drawable.TransitionDrawable cannot be cast to android.graphics.drawable.BitmapDrawable". Same code I have…
9477
  • 15
  • 1
  • 6
0
votes
1 answer

After installing macOS-sierra apple script showing actual wallpaper in finder not working any longer

I used to use the following apple script to find out the actual wallpaper image on my monitor (dual mode) and show it in finder. Under El Capitan the script works fine. After I installed Mac OS Sierra the script shows the error message "error…
afrikapit
  • 29
  • 1
  • 9
0
votes
1 answer

Wallpaper resolution issue

I am trying to make wallpaper app but I am facing a problem which is the low resolution after setting the wallpaper. Although the real picture before setting as wallpaper is very high resolution from url. This is my code: public void set(View view)…