答案 0 :(得分:1)
您可以使用横向指南来完成此操作
可以在顶视图结束前设置X dp,在第二视图开始后设置另一个X dp。
最后,这两个指导原则可以在中间进行垂直整理。
答案 1 :(得分:1)
我的回答是基于这个答案的想法(answer of Juan)
以下代码:
<?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">
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/col_yellow"
app:layout_constraintBottom_toTopOf="@+id/g_top"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<android.support.constraint.Guideline
android:id="@+id/g_top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent=".4"/>
<android.support.constraint.Guideline
android:id="@+id/g_top_above"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent=".35"/>
<android.support.constraint.Guideline
android:id="@+id/g_top_below"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent=".45"/>
<ProgressBar
android:id="@+id/pb_completion"
style="@android:style/Widget.Material.ProgressBar.Horizontal"
android:layout_width="0dp"
android:layout_height="15dp"
android:layout_marginEnd="10dp"
android:layout_marginStart="10dp"
android:progressDrawable="@drawable/progress_background_layer_list"
app:layout_constraintBottom_toTopOf="@+id/g_top_below"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/g_top_above"
tools:progress="100"/>
</android.support.constraint.ConstraintLayout>