我正在使用CoordinatorLayout
中的 View android.support.design
。我想将app:layout_behavior
附加到片段的RecyclerView
吗?
在Google给出的示例中,他们仅将其附加到附加了RecyclerView
的同一XML文件的CoordinatorLayout
中。
有没有一种方法可以将CoordinatorLayout
附加到RecyclerView
中的片段的ViewPager
上?
该示例位于Android Developers博客的this blog post中。
最佳答案
克里斯·类内斯(Chris Banes)在Github上发布了一个示例,该示例准确显示了您想做什么。
这是xml文件,它定义了如何将协调器布局间接附加到viewpager的片段。
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_done" />
</android.support.design.widget.CoordinatorLayout>
这个想法是让viewpager具有layout_behavior属性。
关于android - 使用ViewPager的RecyclerView的CoordinatorLayout,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30540632/