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

Android live wallpaper in Opengl ES 2.0 and preference management

I'm writing a Opengl ES 2.0 live wallpaper for Android starting from article found here. In the code of the article to apply preference changes, you need to restart wallpaper (as wrote in section 4. Viewing the new live wallpaper). I want to bypass…
xcesco
  • 4,690
  • 4
  • 34
  • 65
2
votes
2 answers

Get all live wallpapers from device

I'm trying to develop android app And I want to allow user to choose background of app from live wallpapers. Now, How I can get Live Wallpapers from device? I want to get all live wallpapers from device, Can I do it?
Mohammad Rababah
  • 1,730
  • 4
  • 17
  • 32
2
votes
2 answers

Android Live Wallpaper touch events

I've just started with Android, I'm making a simple Live wallpaper. I'm testing it on a 2.1 emulator. The trouble is while it works in the preview screen before you choose "Set Wallpaper" the touch events don't appear to register on the screen once…
Garcon
  • 2,463
  • 3
  • 23
  • 24
2
votes
0 answers

Android Canvas error - error queuing buffer to SurfaceTexture

Does anyone have an idea what would cause the below error? queueBuffer: error queuing buffer to SurfaceTexture, -32 I'm using SurfaceTexture in my app. The above error occurs when I try to set as a livewallpaper Below is the code: public class…
2
votes
1 answer

Detecting back or set wallpaper button pressed on a livewallpaper preview mode screen?

Do you know a way to detect that the back or set wallpaper button is pressed on a livewallpaper preview mode screen?
Jacques Giraudel
  • 352
  • 4
  • 19
2
votes
0 answers

How to set camera live feed as wallpaper in android

I am trying to make an android application which sets the camera's live feed as wallpaper. I am almost done with the coding part. The thing is when i click the set wallpaper button, the live wallpaper chooser menu opens. But as soon as i select my…
Karthik
  • 23
  • 5
2
votes
1 answer

How to change ListPreference font colors?

I've made the change to the PreferenceScreen background color to blue, but I can't figure out how to change the font color for ListPreference. I mean the font color on the list. This font color is black in the blue background. Is there a way to…
2
votes
1 answer

Google Play Publish Supported devices 0

I developed an app which works on my phone using AndEngine 1.0 and it is a live wallpaper. Having just uploaded my app to the Play store I get: Supported devices 0 . The app is activated and here is my manifest:
devl
  • 429
  • 6
  • 15
2
votes
1 answer

How to scale Bitmaps?

If I place the pictures with different resolution into different drawable folders, it will not stretch and it will select the pictures from one of the drawable folders. However, the pictures still come out off. If I place the pictures into only 1…
2
votes
1 answer

Android gravity sensor values incorrect in orientation change

I'm trying to write a live wallpaper where objects are falling down from top to bottom. The problem is that on a tablet (I'm using a nexus 7 and a galaxy note) when screen orientation changes, my objects are no more falling down but they are going…
Lorenzo Barbagli
  • 1,241
  • 2
  • 16
  • 34
2
votes
3 answers

LibGDX - pause and dispose methods never invoked

I am creating live wallpaper on LibGDX. I am using the latest version(December 2013) of it. I need to dispose some images when live wallpaper is closing or is on pause. I am using following class: public class GdxBase implements…
Nolesh
  • 6,848
  • 12
  • 75
  • 112
2
votes
1 answer

Not find Current selected live wallpaper Drawable

I am trying to find Currently selected Live Wallpaper drawable , but this code every time returns me Default Live wallpaper Drawable, While my custom live wallpaper is set to my device. WallpaperManager wallpaperManager wallpaperManager =…
2
votes
1 answer

“Application not installed on phone ” Error for Wallpaper

I made a live wallpaper which was working fine until I did the following changes: added admob integration. Changed package name changed sdk version from 2.1 to 4.1.2 Problem : Whenever I click on Settings button I get error application not…
Rachita Nanda
  • 4,509
  • 9
  • 42
  • 66
2
votes
2 answers

Android 'set As Wallpaper' functionality

I am developing an application in which I have an image gallery and when I click on any image, it opens in full mode. But I want the set As Wallpaper functionality like android default gallery: I know it can be done by custom code (setting…
Kaidul
  • 15,409
  • 15
  • 81
  • 150
2
votes
1 answer

Android Live Wallpaper - layers & basics of XML in Live Wallpapers

My problem is probably really simple. I recently picked up creating live wallpapers for Android (and Android coding in general), and I lack the basics behind Live Wallpaper coding, since it's really hard to find. I would like to create a Live…