在ConstraintLayout中对齐不同背景边框上的视图

时间:2018-03-12 12:20:01

标签: android android-constraintlayout

我应该在ConstraintLayout中实现如下效果 enter image description here

我知道如何创建自定义ProgressBar,但我不知道 如何在不同背景的边框上对齐此view 请提供一个提示。

2 个答案:

答案 0 :(得分:1)

您可以使用横向指南来完成此操作 可以在顶视图结束前设置X dp,在第二视图开始后设置另一个X dp。
最后,这两个指导原则可以在中间进行垂直整理。

答案 1 :(得分:1)

我的回答是基于这个答案的想法(answer of Juan

结果是: enter image description here

以下代码:

<?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>