0
votes
0answers
45 views

Android Live wallpaper..?

Hi friends i need to create a live wallpaper for android,my requirement is, i need to rotate an image around different different path. The code i tried is working fine for minimum number of frames..as ...
0
votes
0answers
106 views

Setting the dimensions of a bitmap for a live wallpaper

I'm creating a live wallpaper and I'm kinda confused about how I should take the dimensions of the bitmap. Consider that my wallpaper sets a background. I want that to behave as a regular wallpaper ...
0
votes
1answer
60 views

Get part of wallpaper according to current homescreen

I'm making a live wallpaper that switches images with various transitions. But I want to apply the transition only to the part of image that the user can see. And when the transition is complete, the ...
1
vote
1answer
559 views

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); ...
1
vote
1answer
101 views

Increasing clipPath size causes lagging

I'm increasing the size of the clipPath in a loop. Also inside the loop is another loop which creates a few more clipPaths which I use to draw with lowered alpha so that I get a transition effect. But ...
1
vote
1answer
1k views

Create alpha gradient on image to create fade effect

How can I apply an alpha gradient on an image so that it fades linearly? Right now, I'm creating rectangles of unit width and using it to draw the bitmap with a paint object with alpha value being ...
2
votes
1answer
356 views

Paint.setAlpha() sums up, if called several times

I am writing a LiveWallpaper for Android and I want to have a Bitmap with a certain amount of opacity to show. In the constructor of my LiveWallpaper Engine I set a Paint that I will use later on my ...
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 : ...
2
votes
1answer
584 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
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
443 views

canvas / rotation / screen orientation

I'm almost done finalizing my first app (live wallpaper) for Android. The live wallpaper works in portrait mode, but when it gets rotated to landscape the background will be in the left and I only ...
1
vote
1answer
244 views

Android: Can I have layers in a live wallpaper?

I want to create a live wallpaper, and I want to have the bottom background slide together with swiping homescreen pages, while another layer stays always on top of the background and under the app ...
0
votes
1answer
1k views

SurfaceHolder.lockCanvas returns null if the surface is not in the foreground

I'm currently doing a test with a LiveWallpaper in Android. I am drawing something on the canvas using code that looks something like this: final SurfaceHolder holder = getSurfaceHolder(); Canvas c = ...
1
vote
1answer
275 views

image quality becomes bad after many drawBitmap's

my program draws a bitmap on the live wallpaper canvas. It works, but after some time the image becomes very bad (http://img855.imageshack.us/img855/9756/deviceq.png) any ideas why? package ...
1
vote
1answer
2k views

onOffsetsChanged: move Bitmap

i want my Bitmap that has the height of the screen and has a bigger width than the screen to be moved a little bit to the right or left if the user changes the desktop so he can see the entire image. ...