Domanda

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?

È stato utile?

Soluzione

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);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top