Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In My application i want to set the image on the canvas at the right bottom corner. So How i have to set that image in canvas ?

share|improve this question

2 Answers

up vote 3 down vote accepted

canvas.drawBitmap(bitmap , canvas.getWidth()-bitmap.getWidth() , canvas.getHeight()-bitmap.getHeight() , paint);

share|improve this answer
Thanks for answer. It works great. – iDroid Explorer Nov 14 '11 at 10:05

Get the x and y coordinates by some simple calculation

Pseudo Code

x = canvas.width - image.width - padding
y = canvas.height - image.height - padding
canvas.drawBitmap(x,y,....)

EDIT: x = Math.max(0,x); and y = Math.max(0,y); incase the image is bigger than the canvas.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.