美文网首页
imageView 指定比例适配

imageView 指定比例适配

作者: 微笑中的你 | 来源:发表于2020-04-28 08:35 被阅读0次

在ConstraintLayout 布局中,imageView 宽度等屏幕宽度,高度自适应,

    <ImageView
        android:id="@+id/img_logo_banner"
        android:src="@drawable/logo_banner"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:scaleType="fitXY"
        app:layout_constraintDimensionRatio="h,600:325"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        />

相关文章

网友评论

      本文标题:imageView 指定比例适配

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