如何让ImageView高度和宽度保持一致?

本文介绍了一种使ImageView在不同屏幕尺寸下保持宽高比一致的方法。通过扩展ImageView并重写其onMeasure方法,确保了在竖屏和横屏模式下宽度与高度相等,实现了图片的等比例显示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题描述

不设置具体数字的高宽,如何让宽高值保持一致?

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/image"/>

也就是说:
竖屏下,height=width;
宽屏下,width=height;

解决方案

扩展ImageView控件,重写ImageView的onMeasure方法

int squareDim = 1000000000;
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec){

    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    int h = this.getMeasuredHeight();
    int w = this.getMeasuredWidth();
    int curSquareDim = Math.min(w,h);
    if(curSquareDim < squareDim)
    {
        squareDim = curSquareDim;
    }
    Log.d("MyApp", "h "+h+"w "+w+"squareDim "+squareDim);
    setMeasuredDimension(squareDim, squareDim);
 }

参考:http://stackoverflow.com/questions/9798392/imageview-have-height-match-width

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值