Android在Button中调整背景图片大小

时间:2016-02-16 20:36:14

标签: android button

我的情况:我有一个Backgroundimage以上,我有一个透明按钮。是否可以放大Buttonarea内的Backgroundimage?所以它可能只比按钮旁边大2%?就像Button是放大镜一样。

非常感谢。

1 个答案:

答案 0 :(得分:0)

Button.getLocationOnScreen(int[] location);
width = Button.getWidth()
height = Button.getHeight()

Bitmap newBitmap = Bitmap.createBitmap(BACKGROUND_BITMAP, location[0],    location[1], width, height, null, false);

...缩放2%,设置为按钮的背景