如何设置图像宽度以占用ConstraintLayout中一半的空间

时间:2018-09-30 23:42:56

标签: android

我需要帮助设置ImageView宽度以占用父ConstraintLayout中50%的空间。这是布局文件中负责图像显示的一部分:

<ScrollView
    android:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" >

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <ImageView
            android:id="@+id/poster_iv"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            app:layout_constraintHorizontal_bias="0.5"
            android:layout_marginEnd="@dimen/default_margin_sides"
            android:layout_marginStart="@dimen/default_margin_sides"
            android:layout_marginTop="@dimen/default_margin_top_bottom"
            android:contentDescription="@string/iv_poster_description"
            android:adjustViewBounds="true"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" /></android.support.constraint.ConstraintLayout>
</ScrollView>

在上述情况下,它将占用所有可用宽度

1 个答案:

答案 0 :(得分:0)

您应该能够使用百分比来定义宽度和高度(但在这种情况下只能是宽度)。能否请您将以下属性添加到ImageView

app:layout_constraintWidth_default="percent"
app:layout_constraintWidth_percent=".5"

这应该使ImageView居中占据所需空间的一半。

像这样:
enter image description here