0
点赞
收藏
分享

微信扫一扫

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

juneyale 2022-11-29 阅读 183


<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"

 

举报

相关推荐

0 条评论