我需要帮助设置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>
在上述情况下,它将占用所有可用宽度