Live wallpaper is an Android 2.1+ feature that adds the potential for animation and interactivity.
0
votes
2answers
571 views
Android Live wallpaper doesn't show
i have just started learning live wallpapers and i made this little thing.
the thing is my app compiles with out any problems.
as i open it in the phone it shows the wallpaper in the preview but ...
1
vote
0answers
102 views
Camera Contents in Wallpaper Surface
I am working on an application in ANDROID in which I need to create a service (A wallpaper service) which executes in background and displays the live contents of Camera on the Wallpaper surface.
I ...
1
vote
1answer
2k views
Simple Android Live Wallpaper with sequence of images - Updated with code
I would like to develop a simple Live Wallpaper with a sequence of images. The only animation required is for each image to fade in and fade out.
All the tutorials I have found online for LWP ...
0
votes
1answer
138 views
Low Cost Bitmap Rotation on Android
I'm writing the code for my own live wallpaper.
The wallpaper (among other things) has a background bitmap that rotates continuously. The bitmap is big (768x768px). Every screen refresh I do:
...
0
votes
0answers
150 views
Android live wallpaper share feature setting
I would like to implement a share function within the settings of my android live wallpaper. So that it would allow the user to utilize the built in apps like Facebook, Messaging, Bluetooth, and Gmail ...
0
votes
3answers
115 views
LiveWallpaper file existence at phone startup
I have this live wallpaper where you can choose your own custom background and immediately at start the app checks if the filepath exists, if not it flags for drawing just a black screen. The thing ...
0
votes
0answers
196 views
Live wallpaper causes textures to appear white in app on first launch
I'm trying to create a live wallpaper for my app.
Everything works, unfortunately, when I first open my app while my live wallpaper is installed, everything appears white. When I leave and resume my ...
-5
votes
1answer
152 views
How much time it takes to make a live wallpaper.? [closed]
I am neither new nor expert in android.But i have made only one application of calculator.Now i am thinking of making a live wallpaper.My question is..
How much time it takes to make a good user ...
0
votes
2answers
918 views
Setting button for Live Wallpaper doesn't appear
I created a preference files for my slide show Live Wallpaper.
Most of the source are copied from several samples. I think I copied them correctly, and the eclipse shows no warnings or errors for my ...
3
votes
1answer
559 views
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 ...
0
votes
1answer
580 views
RE: Live Wallpaper Screen Rotation
I recently posted a question about screen rotation in my live wallpaper. To test why I was having these problems, I created the simple program below:
package com.live.waller;
import ...
0
votes
0answers
51 views
Live Wallpaper Rendering Location Glitch
I've created a live wallpaper that animates on visible and when changing home screens. It works and is stable but on occasion there will be a couple frames that are animated in the top right in ...
2
votes
0answers
194 views
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 ...
4
votes
1answer
782 views
Live Wallpaper Screen Rotation
I am currently working on a live wallpaper that is very intensive and does not handle screen rotation very well.
In fact the wallpaper is destroyed and displays a blank screen without calling ...
0
votes
2answers
205 views
how to set additive overlay of jpg images to achieve transparency
I need to overlay two images in live wallpaper. The overlay images is the jpg which needs to be set to "additive" overlay. it adds the pixel value rather than calculating the transparency. how can i ...
0
votes
1answer
90 views
Live Wallpaper Performance Issues
I am currently having trouble with a live wallpaper that does some very intensive drawing. However , upon testing my code I find the wallpaper is laggy and is destroyed when the screen gets rotated.
...
0
votes
0answers
335 views
android live wallpaper does not show up, though it is installed
I started working on my first live wallpaper on android mainly working with this:
http://www.vogella.com/articles/AndroidLiveWallpaper/article.html. The problem is that the wallpaper does not show up ...
0
votes
1answer
290 views
Android Graphics: how to recreate look of Microbes live wallpaper?
Video Example here
I'm trying to recreate the look of Microbes live wallpaper for Android, developed by Samsung I believe. Graphics programming is not my forte though and I need some help to get ...
0
votes
0answers
285 views
How to give smooth scrolling efffect in live wallpaper while turning a page
How to give a smooth scrolling effect to live wallpaper? say, if you are scrolling home screen, you can scroll your live wallpaper by using offsetchange(). But this not scroll smoothly. i have seen in ...
0
votes
1answer
2k views
Steps to port an SWF to an Android live wall paper
I have a simple SWF video loop I made a couple years ago that looks nice enough I'd like to make it into a live wall paper for my android device.
Is it possible to do this without rewriting too ...
-2
votes
1answer
70 views
Moving a widget in android
I have made a digital clock as a widget using appWidgetManager in android. Now i want to move that clock on the homescreen. Please Help
Thanks!
2
votes
1answer
714 views
Wallpaper crashes with error - queueBuffer: error queuing buffer to SurfaceTexture
Live Wallpaper crashes, code below
public void render(){
Canvas canvas = null;
try{
canvas = this._surfaceHolder.lockCanvas(null);
synchronized (this._surfaceHolder) {
...
0
votes
0answers
241 views
java.lang.NullPointerException for live wall paper
i am designing one live wall paper,it is showing java.lang.NullPointerException. why this Nullpointerexception will occur?
06-07 12:47:03.117: I/System.out(803): text default
06-07 ...
1
vote
0answers
268 views
Live wallpaper onTouchEvent() fade animation/transition?
I have created a live wallpaper. I would like for the onTouchEvent() to draw an animation or transition from one PNG file to another PNG file at the Touch Event location. So far I am able to draw one ...
0
votes
1answer
300 views
error while adding image using R.drawable.myimagename
this is the error, "myimagename" couldnot be resolved or is not a field.
ps:
myimagename.jpg is present in the drawable folder.
0
votes
4answers
616 views
Live wallpaper settings not applying
I have added settings to my live wallpaper but they are not being applied when changed. I would greatly appreciate it if someone could tell me why my settings are not being applied when changed. Here ...
0
votes
2answers
343 views
How to get my live wallpaper icon in Livewallpaper list
How to get my live wallpaper icon in Livewallpaper list.
I am developing a live wallpaper. After running the application
i cannot see icon when selecting livewallpaper.
please see picture below
I ...
0
votes
1answer
2k views
SurfaceView: dequeueBuffer failed on Android 4.0
I'm building a live wallpaper, it has a bitmap with fullHD resolution which is scaled down to the size of the users phone screen. It works perfectly on Android 2.2 and 2.3 but crashes on 4.0.
EDIT :
...
0
votes
1answer
155 views
Method of the class not working in Android Live wallpaper
I am trying to change the image during runtime in livewallpaper. I am calling method changeFlowers. I able to print Log.W() but unable to change bitmap. Thanks in Advance.
When I call from here ...
2
votes
1answer
580 views
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 ...
1
vote
1answer
282 views
How to make renderscript from android 4.0 as separate lib to run at android 2.x?
Android 4.0 provide new renderscript API now.
How to make renderscript from android 4.0 as separate lib to run at android 2.x ?
Related sources:
1)The related renderscript java source can be ...
0
votes
1answer
99 views
IndexOutOfBoundsException in my implementation of Live wallpaper
Method changeFlowers is failing with Index Out of Bound Exception.
I am new to java, I am calling method "changeColor()" of already instanciated FishOne (Arraylist rederable class)
But it is failing ...
0
votes
1answer
533 views
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 ...
0
votes
2answers
134 views
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 ...
0
votes
0answers
39 views
Application along with a live wallpaper [duplicate]
I need to develop an application which also has live wallpaper option in it. I went through some SO Questions and tutorials but i cant get the sample which has both things.
Please provide me some ...
1
vote
1answer
1k views
Building a live wallpaper
I'm stuck. I'm trying to build a live wallpaper using frames. The code I'm using is not working. The live wallpaper doesn't movie through the frames. It only shows the last frame. What should I do to ...
1
vote
1answer
932 views
How to stretch to fit background image on live wallpaper
I am trying to set the background of my live wallpaper so as to fit perfectly on screen. Current wallpaper size is 1024x1024, but only a part of the image is appearing on my HTC Desire screen(size is ...
0
votes
1answer
55 views
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"?
0
votes
1answer
192 views
Is it possible to have live wallpaper with 32 bit (ARGB_8888) surface format?
When rendering my live wallpaper I have some banding gradient artifacts. This article perfectly explains the reason behind this: to eliminate most of them and improve efficiency I can draw 32 bit ...
0
votes
2answers
315 views
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 ...
2
votes
2answers
1k views
Android OpenGL ES Textures Showing On Black screen on Some Samsung devices
I recently worked on a live wallpaper application. In that i found out my Android live wallpaper has an odd issue. I use my HTC Wildfire S, Samsung Galaxy tab, Motorola Droid Millstone, Samsung galaxy ...
0
votes
1answer
144 views
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 ?
1
vote
0answers
35 views
while making live wall paper for getting weather report facing the following log cat error
please go through the following code in http://www.pastie.org/3809101
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
1
vote
1answer
853 views
screen orientation in Live Wallpaper
I have created a live wallpaper It is working fine in portrait mode but when i put the phone in Landscape mode the view does not appear properly.Now what i want to do is "To fix the screen ...
0
votes
2answers
222 views
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 ...
1
vote
2answers
1k views
Android Live Wallpaper Animation
What's the best way to display an animation as a live wallpaper? Right now I have a gif split into 11 pngs (one per frame) and then I just am doing
public Bitmap frame0;
ArrayList<Bitmap> ...
0
votes
1answer
165 views
Path.transform is being applied multiple times
I am writing a live wallpaper which utilizes a number of paths. I scale these paths in my shape's constructor using a matrix.
this.path = pathCoords;
this.path.transform(Scale.getMatrix());
Here is ...
1
vote
1answer
994 views
Set Android live wallpaper by code, without user interaction
I want to automatically set the live wallpaper in Android by code, without any user interface for wallpaper selection.
Simple wallpaper setting automatically setting is possible by code:
final ...
5
votes
2answers
470 views
How to set Live Wallpaper automatically everyday in android
I am developing a wallpaper app. We can add simple wallpaper automatically by using the following code with a service.
final WallpaperManager wallpaperManager = ...
2
votes
2answers
380 views
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.
