อะไรคือความแตกต่างระหว่าง Barrier และ Guideline ใน Constraint Layout?


93

เพิ่งพยายามใช้งานConstraint Layoutแต่ฉันพบBarrierและใช้Guidelineงานได้เหมือนกัน ทั้งสองทำงานเหมือนตัวแบ่ง มีความแตกต่างกันหรือไม่?

คำตอบ:


202

เมื่อใดควรใช้อุปสรรค

สมมติว่าคุณมีสองTextViewวิดเจ็ตที่มีความสูงแบบไดนามิกและคุณต้องการวางไว้Buttonด้านล่างที่สูงที่สุดTextView:

มุมมองงาน

เฉพาะBarrierวิธีการดำเนินการที่โดยตรงในรูปแบบที่ใช้งานในแนวนอน ซึ่งBarrierช่วยให้คุณระบุข้อ จำกัด ตามความสูงของสองTextViewวินาทีนั้น แล้วคุณ จำกัด ด้านบนของของคุณที่ด้านล่างของแนวนอนButtonBarrier

<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/left_text_view"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:text="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        android:textSize="16sp"
        android:background="#AAA"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/right_text_view"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/right_text_view"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginEnd="8dp"
        android:text="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
        android:textSize="16sp"
        android:background="#DDD"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/left_text_view"
        app:layout_constraintTop_toTopOf="parent" />

    <android.support.constraint.Barrier
        android:id="@+id/barrier"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:barrierDirection="bottom"
        app:constraint_referenced_ids="left_text_view,right_text_view" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:text="Button"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/barrier" />

</android.support.constraint.ConstraintLayout>

เมื่อใดควรใช้แนวทาง

สมมติว่าคุณต้องการจำกัดความสูงดังกล่าวข้างต้นไว้TextViewที่ 30% ของความสูงหน้าจอไม่ว่าจะมีเนื้อหาใดก็ตาม

มุมมองทดสอบ

ในการดำเนินการที่คุณควรเพิ่มแนวนอนGuidelineกับตำแหน่งร้อยละและเป็นการบังคับด้านล่างไปที่TextViewGuideline

<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/left_text_view"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:background="#AAA"
        android:text="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        android:textSize="16sp"
        app:layout_constraintBottom_toTopOf="@+id/guideline"
        app:layout_constraintEnd_toStartOf="@+id/right_text_view"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/right_text_view"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp"
        android:background="#DDD"
        android:text="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
        android:textSize="16sp"
        app:layout_constraintBottom_toTopOf="@+id/guideline"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/left_text_view"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:text="Button"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/guideline" />

    <android.support.constraint.Guideline
        android:id="@+id/guideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.3" />

</android.support.constraint.ConstraintLayout>

สรุป

ความแตกต่างเพียงอย่างเดียวระหว่างBarrierและGuidelineก็คือBarrierตำแหน่งของมันมีความยืดหยุ่นและมักจะขึ้นอยู่กับขนาดขององค์ประกอบ UI หลาย ๆ อย่างที่มีอยู่ภายในและGuidelineตำแหน่งของจะได้รับการแก้ไขเสมอ


คำตอบที่มีค่า!
Alireza Noorali

การอ้างสิทธิ์: "วิธีเดียวที่จะนำสิ่งนั้นไปใช้โดยตรงในเค้าโครงคือการใช้ Barrier แนวนอน" เป็นเท็จ คุณสามารถใช้แนวทางนี้ได้โดยกำหนดให้กล่องข้อความทั้งสองถูก จำกัด ไว้ด้านล่างด้วยแนวปฏิบัติ (เช่นapp:layout_constraintBottom_toTopOf="@id/guideline"
Chrispher

11

เอกสารอย่างเป็นทางการเกี่ยวกับ Barrier :

Barrier อ้างอิงวิดเจ็ตหลายตัวเป็นอินพุตและสร้างแนวทางเสมือนตามวิดเจ็ตที่รุนแรงที่สุดในด้านที่ระบุ ตัวอย่างเช่นเส้นกั้นด้านซ้ายจะจัดชิดซ้ายของมุมมองที่อ้างอิงทั้งหมด

เอกสารการฝึกอบรมเกี่ยวกับ Barrier :

เช่นเดียวกับแนวปฏิบัติอุปสรรคคือเส้นที่มองไม่เห็นซึ่งคุณสามารถ จำกัด มุมมองได้ ยกเว้นสิ่งกีดขวางไม่ได้กำหนดตำแหน่งของตัวเอง แทนตำแหน่งของสิ่งกีดขวางจะเคลื่อนที่ตามตำแหน่งของมุมมองที่มีอยู่ภายใน สิ่งนี้มีประโยชน์เมื่อคุณต้องการ จำกัด มุมมองไปยังชุดของมุมมองแทนที่จะเป็นมุมมองที่เจาะจง

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.