CoordinatorLayout คืออะไร? อย่าปล่อยให้ชื่อแฟนซีหลอกคุณมันไม่มีอะไรมากไปกว่า FrameLayout บนเตียรอยด์
เพื่อให้เข้าใจได้ดีที่สุดว่า a CoordinatorLayout
คือ / ทำอะไรก่อนอื่นคุณต้องเข้าใจ / จำไว้ว่าการประสานงานหมายถึงอะไร
หากคุณ Google คำ
ประสานงาน
นี่คือสิ่งที่คุณจะได้รับ:
ฉันคิดว่าคำจำกัดความเหล่านี้ช่วยในการอธิบายสิ่งที่ CoordinatorLayout ทำด้วยตัวเองและมุมมองภายในนั้นทำงานอย่างไร
A CoordinatorLayout (a ViewGroup) นำองค์ประกอบที่แตกต่างกัน (มุมมองเด็ก) ของ (̶a̶̶c̶o̶m̶p̶l̶e̶x̶̶a̶c̶t̶t̶i̶v̶i̶t̶y̶̶o̶r̶̶a̶n̶̶o̶r̶g̶a̶n̶i̶z̶a̶t̶t̶i̶v̶i̶t̶y̶̶o̶r̶̶a̶n̶̶o̶r̶g̶a̶n̶i̶z̶a̶t̶ความสัมพันธ์ที่มีประสิทธิภาพ
ด้วยความช่วยเหลือของผู้ประสานงานเค้าโครงมุมมองของเด็กจะทำงานร่วมกันอย่างกลมกลืนเพื่อปรับใช้พฤติกรรมที่ยอดเยี่ยมเช่น
ลากรูดเหวี่ยงหรือท่าทางอื่น ๆ
มุมมองภายในผู้ประสานงานเค้าโครงเจรจากับผู้อื่นเพื่อทำงานร่วมกันอย่างมีประสิทธิภาพโดยระบุพฤติกรรมเหล่านี้
CoordinatorLayout เป็นคุณสมบัติที่ยอดเยี่ยมของการออกแบบวัสดุที่ช่วยสร้างเลย์เอาต์ที่น่าสนใจและกลมกลืนกัน
สิ่งที่คุณต้องทำคือสรุปมุมมองของบุตรหลานของคุณไว้ใน CoordinatorLayout
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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"
android:fitsSystemWindows="true"
tools:context="com.byte64.coordinatorlayoutexample.ScollingActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/app_bar_height"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_scolling" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|end"
app:srcCompat="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
และ content_scrolling:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.byte64.coordinatorlayoutexample.ScollingActivity"
tools:showIn="@layout/activity_scolling">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:text="@string/large_text" />
</android.support.v4.widget.NestedScrollView>
สิ่งนี้ทำให้เรามีรูปแบบที่สามารถเลื่อนเพื่อยุบ Toolbar และซ่อน FloatingActionButton
เปิด:
ปิด: