我的情况:我有一个Backgroundimage以上,我有一个透明按钮。是否可以放大Buttonarea内的Backgroundimage?所以它可能只比按钮旁边大2%?就像Button是放大镜一样。
非常感谢。
答案 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%,设置为按钮的背景