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?

有帮助吗?

解决方案

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);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top