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
0 answers

Setting wallpaper: PowerShell works but only temporarily

I have some trouble with a PowerShell and Batch file. When I run a batch file in which a Powershell script is called, it runs normally. After a logoff and logon it´s as if nothing happened. This is the batch file (SetWallpaper.bat): @ECHO…
Emal011
  • 11
  • 5
0
votes
1 answer

How to create a blur effect for android wallpaper? (with illustrations)

i'm newbie. Im creating a simple android launcher. i have a problem with blur for wallpaper. Wallpaper larger than phone screen. i want to blur a path of this wallpaper which is as large as screen. however, each time when I scroll my screen, the…
namdn
  • 69
  • 8
0
votes
1 answer

Programmatically to reduce the image size for the preview

I use code to set Wallpaper on your desktop: Button buttonSetWallpaper = (Button)findViewById(R.id.set); ImageView imagePreview = (ImageView)findViewById(R.id.preview); imagePreview.setImageResource(R.drawable.five); …
GAAAN
  • 399
  • 2
  • 3
  • 14
0
votes
1 answer

Wallpaper not scaling correctly when placing it as activity backgroung

I have a custom .png image set as my Android device's wallpaper. As I understand it, wallpaper size should be 960x800 pixels but the Android device will only present the middle part of the image and the extra right and left parts are for when you…
0
votes
1 answer

Android Background Size for Tablet?

i was searching and cant find a solution, because its the first time I am working with android. So whats are the working dimensions for background images for android tablets (with lollipop). Should it be bigger than 1920x1080 because of the…
Dennis
  • 137
  • 1
  • 2
  • 14
0
votes
3 answers

Scrollable wallpaper android

I am developing a wallpaper application in Android and i am finding a right way to set scrollable wallpaper for my app. Now, my code can set wallpaper from bitmap but it was cropped to fit with one page and just stayed only on one page (i have 5…
0
votes
1 answer

How to set a UIImageView as a phone's wallpaper

When you have a UIImageView which has been sent the following messages: imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SteveJobsMacbookAir.JPG"]]; [imageView setFrame:CGRectMake(80.0, 20.0, 160.0, 230.0)]; [imageView…
B.A.S. Apps
  • 735
  • 1
  • 5
  • 8
0
votes
0 answers

How to shrink Android wallpaper?

Whenever i set a wallpaper, after 1 sec it is zooming and stretching. How to set my image as fit wallpaper? (My image is good enough for wallpaper. 1080*1920). DisplayMetrics metrics = new DisplayMetrics(); …
Linojan
  • 21
  • 3
0
votes
2 answers

Set Imageview as wallpaper with a Button

I have a problem with my code, I want to set an image from an ImageView as the wallpaper, I have a gallery and when I press an image from there the ImageView changes, so I don't know where to put the code for onClick to my button. This is my…
0
votes
1 answer

Sound effect on Android live wallpaper

Can Android live wallpaper create sound effects based on the touch of users? I don't see alot of live wallpaper with sound effects out on the market. Is there a reason for it? For e.g, battery drain or other programming issues?
0
votes
1 answer

Android Camera Preview not display in entire screen

In my application/activity i display camera preview as backgrounds ( as transparent screen ), in above the camera preview i display different icons,but at the bottom or in some devices right side display one line, but in that some diveces - it not…
Nirav Mehta
  • 1,715
  • 4
  • 23
  • 42
0
votes
2 answers

App automatically closes after opening

I am posting xml codes, it is not running on AVD and device: I haven't coded any logic for Java it is simply a blank file, and it is as below: Problem i am facing is i am not able to run this app, it automatically closes after opening and i don't…
Manan Gupta
  • 491
  • 1
  • 7
  • 11
0
votes
1 answer

Writing to standard user's HKCU Registry value via administrator account

GPO sets HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\ActiveDesktop\NoChangingWallPaper to 1, thus locking me to an ugly corporate wallpaper. The key's permissions belong to the Administrators' group. In Regedit I cannot modify or delete…
Robert J
  • 11
  • 4
0
votes
0 answers

Setting wallpaper in android code?

I have been using this code for a while now but it is not working as expected it sets the wallpaper bigger than the screen making it bigger so I scaled to so it would fit the screen and it worked fine but the thing is that when I restart the device…
Ali Abaza
  • 85
  • 7
0
votes
0 answers

Windows .Net : Get direct Wallpaper reference/pointer [includes a way to very quickly change the wallpaper]

I'm trying to create an interactive desktop wallpaper for Windows 7/8 in Mono/.Net . I'm only updating the Wallpaper when it changes, and I'm using SystemParametersInfo() in user32.dll to do so. My code looks like this : const int…
Sven
  • 13
  • 3