In a custom view, is there a way I can set the center of a drawable at a certain point on the canvas? (I don’t want to deal with figuring out rectangular bounds for the drawable…)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When you make the call to draw the Bitmap, draw it at a point with it’s left and top attributes set to the position minus half the image’s width and height, respectively. That will center it at the point you want.
IE.