Question

Progress bar image

Hello cane someone help me please. I have bean trying for more than four hours to accomplish the following. I want the progress bar to display an image instead to display a color. I haven't found any tutorial about that?

Était-ce utile?

La solution

You can create Paint object with bitmap shader:

paintImage = new Paint();
paintImage.setShader(new BitmapShader(bitmap, TileMode.CLAMP, TileMode.CLAMP));

and then draw with it like as you draw with usual color paint:

canvas.drawRect(new Rect(...), paintImage);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top