我正在使用画布在Android中显示图像。我希望这个图像占据屏幕的中心,而不管屏幕的大小。那么我怎么能实现它呢。
这是我试过的片段,请让我知道你的想法。
@Override
protected void onDraw(Canvas canvas) {
..........
..........
sampleImage.draw(canvas,getWidth(),getHeight()); // This moves the image to right end of the view.
..........
..........
非常感谢任何形式的帮助。
感谢。
答案 0 :(得分:1)
sampleImage.draw(
canvas,
getWidth()/2 - imageWidth/2,
getHeight()/2 - imageHeight/2
);
)