Вопрос

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