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
7
votes
3 answers

Android PreferenceScreen "color picker" implementation

can someone help me? I need implement some color picker to preference screen (live wallpaper settings). Is there any solution out there, some open source?
Michal
  • 3,584
  • 9
  • 47
  • 74
6
votes
3 answers

Wallpaper Settings force close

I'm having a force close problem whenever I try to launch the settings for my live wallpaper. I don't really have anything there, so I'm not sure what could possibly be causing the problem... Here is the logCat 03-17 02:13:55.262:…
Matt
  • 2,650
  • 4
  • 36
  • 46
6
votes
2 answers

Use a HTML page as Live Wallpaper in Android

Can I use a HTML page as a Live Wallpaper? Or is it possible to capture a web page as an image and set it as a wallpaper? Any help would be greatly appreciated.
Adnan
  • 99
  • 1
  • 2
  • 5
6
votes
3 answers

Using Google's MapView v2 in Live Wallpaper

I have been trying to resolve this for a while now. I would like to use a MapView v2 with my Live wallpaper, so far my results are a black screen with a google logo on the bottom. My manifest has required permissions:
6
votes
3 answers

Live Wallpaper with Game Engine or not?

I'd like to develop a live wallpaper. After some research, I concluded that there were two options to create one : Directly, i.e like it's said on Android-Developpers ( http://developer.android.com/resources/articles/live-wallpapers.html ) Or…
Trox
  • 349
  • 1
  • 5
  • 15
6
votes
0 answers

backup and restore home screen widgets and live wallpaper

My clients wants me to create an app which will install some apps, a 3rd party launcher, some widgets in home screen and a live wallpaper. All of these with least user interactions. So that he can replicate all of the settings in multiple devices by…
6
votes
2 answers

Android - Live Wallpaper offset clipping

I am writing a live wallpaper for android. To test my basic code was working I drew a rectangle in the top left-hand cornor of the screen: canvas.drawRect(0f,0f,50f,50f,paint); Half of the rectangle was underneath the bar at the top of the home…
user130076
6
votes
1 answer

How can I display the user's live wallpaper as background in my app?

I am creating a lockscreen replacement app for Android and would like to incorporate the user's currently selected wallpaper as my app's background. This is pretty easy to do for static background images, but I am not sure how to get a live…
Jeremy White
  • 2,818
  • 6
  • 38
  • 74
6
votes
1 answer

Detecting Click on "Set wallpaper" button in Live Wallpaper Picker

I have a live wallpaper that has more than one "skins", and the user is able to choose between the skins in the "Settings" menu. What I would like to achieve is the following: when the user sets a live wallpaper and then navigates again to the live…
mobearette
  • 377
  • 10
  • 26
6
votes
1 answer

Getting error at WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER

I'm creating my fist Live wallpaper by following this tutorial. But i'm getting error can not be resolved or is not a field on these two lines WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT while…
Arsalan
  • 513
  • 1
  • 7
  • 22
6
votes
1 answer

Using a FrameLayout as a Live Wallpaper

I'm trying to use a FrameLayout as the content of a Live Wallpaper. According to this answer by Romain Guy, it should be possible, but I didn't have much luck calling .measure() and .layout() on the view. Could anyone give me a brief example of how…
Nick
  • 3,504
  • 2
  • 39
  • 78
5
votes
5 answers

android 3d live wallpaper - what engine to use?

I saw this live 3d wallpaper and was wondering how it is made, e.g. what engine should be used to make it? From what I found, Unity3D currently does not support making wallpaper...
Roger Travis
  • 8,402
  • 18
  • 67
  • 94
5
votes
2 answers

Could live wallpaper be set as background?

Is it possible to set some of the live wallpapers as a background of an activity ?
Lukap
  • 31,523
  • 64
  • 157
  • 244
5
votes
0 answers

Live wallpaper is not accessible from other Live Wallpaper apps

I have developed a live wallpaper app and it is accessible only from Google's Live wallpaper app, but there are phones like Xiaomi, Oppo which has their own wallpaper app and My app doesn't show in their wallpaper section. Can anyone help me fix…
5
votes
1 answer

Get an image/screenshot of live wallpaper on Android?

Is there a way to get an image of the current live wallpaper using the WallpaperManager API? I tried the following code, but it simply returned the the icon of the app that was used to set the wallpaper. PackageManager pm =…
TMS
  • 1,201
  • 1
  • 13
  • 20
1 2
3
46 47