I used this function in my Android program:
public void drawBitmap (Bitmap bitmap, float left, float top, Paint paint)
However, I want to draw my bitmap not in the position 0 x 0, but in the position 10 x 10 (in PIXELS). The drawBitmap function, however, only accepts float numbers...
How can I achieve this??
Thank you in advance!
drawBitmap(bitmap, 10.f, 10.f, ... )... Considering the transformation matrix of the canvas is set to the identity matrix, that is – K-ballo May 7 '12 at 2:06