how to resize an ImageView Programmatically

2019-02-16 19:31发布

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条回答
手持菜刀,她持情操
2楼-- · 2019-02-16 19:47

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.

查看更多
登录 后发表回答