简体   繁体   中英

Android resize background image in Button

my Situation: I have a Backgroundimage and above i have a Transparent Button. Is it possible to zoom in the Backgroundimage inside the Buttonarea ? So it may be just 2% Bigger than next to the Button? Like the Button is a magnifying glass.

Thanks a lot.

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

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

...scale 2%, set as background to the Button

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM