I want to resize an ImageView when I touch on it. It will be perfect to resize it like when you do the zoom in google maps or in a mobile browser but if just touching it I can resize it will be enough. Is that possible?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Just catch the event of touching this ImageView and than just adjust height & weight :
touched_image_view.getLayoutParams().height += 20;
touched_image_view.getLayoutParams().width += 20;
Or you can just create and set new LayoutParams :
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(100, 100);
touched_image_view.setLayoutParams(layoutParams);
Hope it helps.