如何使用Canvas将图像放置在屏幕的中心

时间:2011-04-14 07:54:35

标签: android image canvas

我正在使用画布在Android中显示图像。我希望这个图像占据屏幕的中心,而不管屏幕的大小。那么我怎么能实现它呢。

这是我试过的片段,请让我知道你的想法。

@Override
        protected void onDraw(Canvas canvas) {
        ..........
            ..........
            sampleImage.draw(canvas,getWidth(),getHeight()); // This moves the image to right end of the view.
            ..........
            ..........

非常感谢任何形式的帮助。

感谢。

1 个答案:

答案 0 :(得分:1)

sampleImage.draw(
      canvas,
      getWidth()/2 - imageWidth/2,
      getHeight()/2 - imageHeight/2
);