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

Android live wallpaper sample getting force closed , Unable to instantiate service

I trying to run a some tutorial samples for android live wall paper but always got this error 09-28 16:13:30.729: E/AndroidRuntime(408): java.lang.RuntimeException: Unable to instantiate service …
Renjith K N
  • 2,613
  • 2
  • 31
  • 53
3
votes
1 answer

Null Pointer Exception in Andengine LiveWallpaper

I am making a livewallpaper using Andengine Live wallpaper extension. The problem is that when i try to attach a sprite (a background image) in OnCreateScene method, I get a null pointer exception. Can someone help me with this? Following is my code…
Swati Rawat
  • 1,729
  • 1
  • 19
  • 34
3
votes
1 answer

3d cube using canvas. Need a little improvement

I made this 3d cube using the following code Matrix mMatrix = canvas.getMatrix(); canvas.save(); camera.save(); camera.rotateY(-angle); camera.getMatrix(mMatrix); mMatrix.preTranslate(-width, 0); mMatrix.postTranslate(width,…
timemanx
  • 4,493
  • 6
  • 34
  • 43
3
votes
0 answers

Live Wallpaper preferences in launcher

I'm developing a live wallpaper (just for me), and i wan't to access the preferences of my wallpaper with a icon on my homescreen. The preference activity is already declared in my manifest, and when i add the intent filter…
teamalpha5441
  • 741
  • 1
  • 6
  • 20
3
votes
1 answer

Live Wallpaper using a sequence of images

Well hello everybody. This is my first ever android project. I am trying to create a live wallpaper with a sequence of images gotten from a video. The dimensions of each image is 960 x 800. So far the live wallpaper works, but I still have issues I…
FrankieWar
  • 31
  • 6
3
votes
0 answers

Failed to register input channel - live wallpaper

I encountered similar problem as this. The crash report is from Google Play and I can't reproduce it by myself. I tried to download Launcher Pro but that wasn't causing any troubles. Here is the stack trace: java.lang.RuntimeException: Failed to…
Mikko P.
  • 41
  • 1
  • 8
3
votes
1 answer

Live Wallpaper and extended background

I'm trying to create a live wallpaper with an animation always centered in the current homescreen page, without loosing the extended background. What I'm doing right now is to draw my custom background bitmap, then draw some text on it. This is my…
Santacrab
  • 3,165
  • 2
  • 25
  • 31
2
votes
2 answers

Wallpaper should change automatically on Android phone every day

I want to make a service which can set wallpaper every day on the Android device Home Screen. How can we do this? Any help is appreciated.
Himanshu
  • 1,066
  • 6
  • 19
  • 44
2
votes
0 answers

Android animated live wallpaper

I have a sequence of png files and I want to produce an animated livewallpaper to be published in google market (play). How can I do that?
2
votes
0 answers

it is possible to video live wallpaper in android application?

it is possible to video live wallpaper in android application? anybody help me and perfect way for implemented in live wallpaper. Thanks!
Hiteshpatel0024
  • 593
  • 1
  • 4
  • 14
2
votes
0 answers

Andengine Live Wallpaper Texture issue

The texture on my live wallpaper is playing up... I'm getting bad android reviews because of it. The link below shows a texture problem on the bottom right hand corner. http://imageshack.us/photo/my-images/808/20120112200731.png/ It does not always…
Wally
  • 47
  • 1
  • 6
2
votes
2 answers

Start a live wallpaper service from activity

public class ShortCurActivity extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); final Button button =…
2
votes
1 answer

get size and positions of icons and bottom strip / home button in live wallpaper

Is it possible to get the sizes and positions of everything (or at least anything) that "obstructs" the view to live wallpaper? I would like to make a wallpaper that would make special effects around icons or at least bottom strip. Also, is the…
johndodo
  • 17,247
  • 15
  • 96
  • 113
2
votes
3 answers

Any way to hide Android home screen icons to show Live Wallpaper?

As Android live wallpapers are becoming more prevalent, and developers are doing more with them, a question coming up more and more is how to hide the home screen icons temporarily while the user interacts with the wallpaper. For this to work, the…
Mountains
  • 123
  • 1
  • 2
  • 9
2
votes
2 answers

Start animation with AndEngine Live Wallpaper extansion

I have code like this: public class SnowFallService extends BaseLiveWallpaperService implements IOnAreaTouchListener{ // =========================================================== // Constants //…
Divers
  • 9,531
  • 7
  • 45
  • 88