Android 最简单的固定长/宽设置ImageView长宽比

 <ImageView
            android:id="@+id/img_menu"
            android:layout_width="25dp"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:adjustViewBounds="true"
            android:src="@mipmap/mine_minevideo"
/>

关键:

 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:scaleType="fitXY"
 android:adjustViewBounds="true"
发布了154 篇原创文章 · 获赞 391 · 访问量 26万+

猜你喜欢

转载自blog.csdn.net/LucasXu01/article/details/101072677
今日推荐