문제

Is there any way to draw some icons or something in Canvas inside points or circles? For example a company´s logo? Could be with bitmap or similar?

도움이 되었습니까?

해결책

Use the different methods from Canvas "draw()" and you just have to take care of your bounds. Use for example:

mCanvas.drawBitmap(Bitmap bitmap, float left, float top, Paint paint);
mCanvas.drawCircle(float cx, float cy, float radius, Paint paint);

Check it here: http://developer.android.com/reference/android/graphics/Canvas.html

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top