เพิ่งพยายามใช้งานConstraint Layout
แต่ฉันพบBarrier
และใช้Guideline
งานได้เหมือนกัน ทั้งสองทำงานเหมือนตัวแบ่ง มีความแตกต่างกันหรือไม่?
เพิ่งพยายามใช้งานConstraint Layout
แต่ฉันพบBarrier
และใช้Guideline
งานได้เหมือนกัน ทั้งสองทำงานเหมือนตัวแบ่ง มีความแตกต่างกันหรือไม่?
คำตอบ:
สมมติว่าคุณมีสองTextView
วิดเจ็ตที่มีความสูงแบบไดนามิกและคุณต้องการวางไว้Button
ด้านล่างที่สูงที่สุดTextView
:
เฉพาะBarrier
วิธีการดำเนินการที่โดยตรงในรูปแบบที่ใช้งานในแนวนอน ซึ่งBarrier
ช่วยให้คุณระบุข้อ จำกัด ตามความสูงของสองTextView
วินาทีนั้น แล้วคุณ จำกัด ด้านบนของของคุณที่ด้านล่างของแนวนอนButton
Barrier
<?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
กับตำแหน่งร้อยละและเป็นการบังคับด้านล่างไปที่TextView
Guideline
<?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
ตำแหน่งของจะได้รับการแก้ไขเสมอ
app:layout_constraintBottom_toTopOf="@id/guideline"
เอกสารอย่างเป็นทางการเกี่ยวกับ Barrier :
Barrier อ้างอิงวิดเจ็ตหลายตัวเป็นอินพุตและสร้างแนวทางเสมือนตามวิดเจ็ตที่รุนแรงที่สุดในด้านที่ระบุ ตัวอย่างเช่นเส้นกั้นด้านซ้ายจะจัดชิดซ้ายของมุมมองที่อ้างอิงทั้งหมด
เอกสารการฝึกอบรมเกี่ยวกับ Barrier :
เช่นเดียวกับแนวปฏิบัติอุปสรรคคือเส้นที่มองไม่เห็นซึ่งคุณสามารถ จำกัด มุมมองได้ ยกเว้นสิ่งกีดขวางไม่ได้กำหนดตำแหน่งของตัวเอง แทนตำแหน่งของสิ่งกีดขวางจะเคลื่อนที่ตามตำแหน่งของมุมมองที่มีอยู่ภายใน สิ่งนี้มีประโยชน์เมื่อคุณต้องการ จำกัด มุมมองไปยังชุดของมุมมองแทนที่จะเป็นมุมมองที่เจาะจง