I am creating a Live Wallpaper and I'm painting to the canvas on every Runnable.run() call with a changing colour and i'm hoping to put a gradient over the top but the gradient i'm creating is banding horribly. After Googling around for a few days I came up with 2 solutions: set the dither to true set the canvas bitmap to ARGB_8888

i've tried doing the first one (set dither to true) on the getWallpaper() accessor and the Paint object but it's not helped (I can't see any dithering at all) so I've tried changing the canvas bitmap but i'm not sure how to actually display it

// _canvasBmp = Bitmap.createBitmap(metrics.widthPixels, metrics.heightPixels, Bitmap.Config.ARGB_8888);

_shadowPaint.setStyle(Paint.Style.FILL);
_shadowPaint.setShader(new RadialGradient(metrics.widthPixels / 2,
metrics.heightPixels / 2, metrics.heightPixels / 2, 0x00000000,0x33000000, Shader.TileMode.CLAMP));
_shadowPaint.setDither(true); // this hasn't seemed to have done anything to fix the banding

// my main rendering method is this (based on the Google live wallpaper example)
void drawFrame()
{
   final SurfaceHolder holder = getSurfaceHolder();

   Canvas c = null;
   try
   {
           c = holder.lockCanvas();
           // c.setBitmap(_canvasBmp);// this was my attempt to update the bitmap to one that was ARGB_8888 but it didn't render at all

           if (c != null)
           {
                   // draw something
                   drawBackground(c);
                   drawTouchPoint(c);
                   drawShading(c);
                   drawBorder(c);

                   getWallpaper().setDither(true); // yet another attempt to get some kind of dithering going to no avail
           }
   }
   finally
   {
           if (c != null)
                   holder.unlockCanvasAndPost(c);
   }

   _handler.removeCallbacks(_drawClock); // _drawClock is the Runnable object

   if (_isVisible)
   {
           _handler.postDelayed(_drawClock, 1000 / 25);
   }
}


private void drawShading(Canvas c)
{
    c.drawRect(_screenBounds, _shadowPaint); // _screenBounds is a Rect set to the _metrics width and height
}

Thanks in advance for your time

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

In your PinupEngine class...

@Override
public void onCreate(SurfaceHolder surfaceHolder) {
  super.onCreate(surfaceHolder);
  surfaceHolder.setFormat(android.graphics.PixelFormat.RGBA_8888);
}

I have found that the LiveWallpaper drawing is slower with the larger bitmap pixel type. I expect it will also use a lot more memory (More than Double). If you can it might pay to try and limit the use of RGBA_8888 if possible. Default is RGB_565 I think, not sure about that.

link|improve this answer
that's fantastic - thanks so much – obie Feb 23 '11 at 14:41
No problem, can you select my answer as the accepted solution? Thx – CatalystNZ Feb 28 '11 at 4:24
1  
just a quick comment - the default should be PixelFormat.OPAQUE – obie Jul 20 '11 at 16:33
feedback

Does the approach suggested by CatalystNZ work? I have tried both the methods (dither and ARGB) and tried on two actual devices of different make. I still see banding on both the devices.

Is there any other way to remove banding?

link|improve this answer
yes catalystNZs suggestion is correct. Just note that if you want to go back to the default it is PixelFormat.OPAQUE. – obie Feb 2 at 14:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.