Questions tagged [live-wallpaper]

Live wallpaper is an Android 2.1+ feature that adds the potential for animation and interactivity.

Live wallpaper is specific to Android. It was introduced in v2.1 (froyo). Most (but not all) phones running 2.1 support it; all phones running 2.2+ support it. Android Market filters searches so that only supported phones can find published wallpapers (android.software.live_wallpaper).

Live wallpaper allows the programmer to create an Android service (as opposed to an activity) that supports animation, interactivity, and scrolling. The SDK contains sample code for a live wallpaper that displays an animated cube and dodecahedron.

The novice live wallpaperer should start there. The Android source distribution contains code for some "standard" wallpapers that ship with most phones. AndEngine supports live wallpaper creation, as does LibGDX and GLWallpaperExtension.

701 questions
0
votes
1 answer

Android OpenGl Es 2.0 live wallpaper textures and bitmaps

I m developing a live wallpaper with opengl es 2.0 and i would like to know if there is a way to keep the textures loaded on create of renderer ,or the bitmaps , so they dont need to recreate every time screen orientation changes , or when screen…
0
votes
2 answers

why Android live wall paper in not setting? its forcably closing. why?

i downloaded the Acquarium live wall paper, when i run on eclipse it shows no errors, but in console its is showing the following message Android Launch! [2012-05-25 14:55:43 - LiveAquariumWallpaper]…
Deepu Mandy
  • 117
  • 12
0
votes
1 answer

User's Phone Screen Size

I am writing a livewallpaper. As before, I get the user's screen width & height at "onSurfaceChanged". Can I get the screen width & height at "onSurfaceCreated"?
Perry
  • 116
  • 1
  • 1
  • 7
0
votes
2 answers

windows screen saver as android live wallpaper

I would like to know if there is a way to process a .scr file (windows screen saver file) to make an android live wallpaper from it? I searched a lot on google about it without luck. Does any have an idea of how to do this or where I can find…
Pedro Teran
  • 1,200
  • 3
  • 17
  • 43
0
votes
1 answer

is it possible to put EditText in LiveWallPaper?

is it possible to add edittext box in setting of android live wall paper ? and if yes then how to set it in the setting and retrieve it's value ?
Ravi Bhojani
  • 1,032
  • 1
  • 13
  • 24
0
votes
2 answers

Android live wallpaper farmula

in live wallpaper we have method called onOffsetsChanged which is called when user swipes on the screen of this phone the value of xOffset is changed from 0.1 to 0.9 now i want to make is this way that when the value falls less then 0.5 it might…
Iori
  • 660
  • 1
  • 10
  • 19
-1
votes
1 answer

Drawing and removing circle/bitmap on Canvas in Live Wallpaper

With link to my previous question of Moving Circle on Live Wallpaper. I am moving a circle with new bitmap each time with circle drawn on it on new position i.e. (x,y). But it doesn't seems to me a good way of doing it, so I am thinking that is it…
Avtar Guleria
  • 2,126
  • 3
  • 21
  • 33
-1
votes
1 answer

Android Live Wallpaper + Sprite Animation

I'm a newbie in programming and is very much interested in knowing how to create my own Android Live Wallpaper. I know that a lot of resources are out there but they were pertaining to some advance level of knowledge. Can anyone provide a "step by…
Deshadowathe
  • 1
  • 1
  • 2
-1
votes
2 answers

How to load a live image into a UIImageView

I am trying to load a live image into a UImageView but it is being loaded as a static image. Here is my code: if let stringLocal = Bundle.main.path(forResource: "Image_from _iOS", ofType: "jpg") { self.displayImageView.image = UIImage(named:…
osxDev123
  • 21
  • 4
-1
votes
1 answer

Why `onComputeColors` is being ignored on Android P beta (DP2)?

Background I have a live wallpaper that uses the relatively new API (from Android 8.1 - API 26) to request the OS to use customized…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
-1
votes
1 answer

Multiple fragments in live wallpaper

Hi playing it fast and lose (which is my coding style;) I've basically created all the functionality i need, but in the wrong context. I currently have an activity class that receives gps data from multiple sources, and based on that data creates 6…
-1
votes
1 answer

create live wallpaper in viewpager android apps

Hi i have a app contain 3 page. and i want to set one page as background like android home screen. I search in google and i found this and this tutorial's but i couldn't use it for my target can anyone show me another better example thanks.…
max
  • 5,963
  • 12
  • 49
  • 80
-1
votes
1 answer

how to make a background scroll according to user tap to right/left in live wallpaper app?

i'm trying to draw an image as a background in live wallpaper app, but i don't know how to make it scrolls according to user tap to right/left (just like you set a simple wallpaper, if you move the menu to Rightmost, the background also move to…
hkguile
  • 4,235
  • 17
  • 68
  • 139
-1
votes
1 answer

How to make checkboxes work in a live wallpaper Android app?

I have three check boxes in my live wallpaper's settings that I need to figure out how to make them work, I want for example checkbox1 to execute code1, checkbox2 to execute code 2 and the last checkbox to execute code3: code1: private void…
-1
votes
4 answers

ArrayIndexOutOfBounds with For loops

I am trying to create a 2D array of squares (custom class) for a live wallpaper. I calculate how many can be displayed using the screen width and height and final ints for the square side length and gap distance between them. When initializing the…
1 2 3
46
47