在android中改变imageview的高度和宽度

前端之家收集整理的这篇文章主要介绍了在android中改变imageview的高度和宽度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序按钮单击我想改变imageview的大小.当我点击一个按钮我想增加5的视图尺寸(每个宽度和高度).点击其他按钮我想减小尺寸.i试过这个.
我怎么能这样做?下面是code.its无法正常工作
public void increase(View v)
{

    int height=imageView.getHeight();
    int width=imageView.getWidth();
    imageView.getLayoutParams().height = height+5;
    int h=imageView.getHeight();
    System.out.println("hhhhhhhhhh,"+h);
    System.out.println("width n hight..."+width+"and"+height);


}

解决方法

更新:

做这个:

int height=imageView.getHeight();
int width=imageView.getWidth();
imageView.setLayoutParams(new LinearLayout.LayoutParams(height,width));

建议您的ImageView位于LinearLayout内,您需要这样做:

LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) imageView.getLayoutParams();
params.setHeight(XX);
params.setWidth(XX);
imageView.setLayoutParams(params);

我不知道语法是否完全正确,但基本上就是这样做,不要忘记你需要更新你的UI,以便看到任何变化.

原文链接:https://www.f2er.com/android/309535.html

猜你在找的Android相关文章