Android视图是否具有宽高比,水平填充父级并在父级中居?

时间:2017-06-03 20:25:57

标签: android android-layout

我试图在RecyclerView的行之间嵌入一个图像(作为另一个ViewType / ViewHolder)。所述图像必须具有9:5的宽高比,最大高度为600px,因此在较大的手机或平板电脑上不会变大,因此如果尺寸不大,则必须水平居中。由于纵横比调整大小,匹配父宽度。

这是否可以在没有自定义代码的情况下实现?我尝试了ConstraintLayout和PercentFrameLayout,两者似乎都忽略了android:maxHeight标准。

1 个答案:

答案 0 :(得分:0)

您可以使用指南ConstraintLayout执行此操作。将您的指南600px分开设置并将ImageView约束到指南:顶部和底部。这些约束将使图像不会超过600px。这是我向上和向下移动底部指南时发生的video。下面是布局的XML。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.myapplication.MainActivity">

    <android.support.constraint.Guideline
        android:id="@+id/guidelineTop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_begin="0px" />

    <android.support.constraint.Guideline
        android:id="@+id/guidelineBottom"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_begin="600px" />

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_margin="0dp"
        app:layout_constraintBottom_toTopOf="@+id/guidelineBottom"
        app:layout_constraintDimensionRatio="9:5"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="@+id/guidelineTop"
        app:srcCompat="@mipmap/ic_launcher"/>

</android.support.constraint.ConstraintLayout>