美文网首页
Android-图片根据高度自适应

Android-图片根据高度自适应

作者: 唔笛plk | 来源:发表于2021-11-17 09:12 被阅读0次

    主要是adjustViewBounds和:scaleType两个参数

     <ImageView
            android:id="@+id/ivHomeApply"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="20px"
            android:layout_marginBottom="20px"
            android:scaleType="fitXY"
            android:adjustViewBounds="true"
            android:src="@drawable/pic_entrance_bg" />
    

    相关文章

      网友评论

          本文标题:Android-图片根据高度自适应

          本文链接:https://www.haomeiwen.com/subject/lvlialtx.html