【Android】 TabLayout + ViewPager + RecyclerView 위에 View를 두고 스크롤로 TabLayout은 상단에 고정하고 싶다

어떤 레이아웃입니까? (메모)



이런 레이아웃이 있고, 아래로 스크롤했을 때에 Tab은 Toolbar or ActionBar아래에 딱 멈추고 싶다고 디자이너 씨에게 말해졌을 때 짜 보았던 레이아웃.



◯◯◯Activity 레이아웃



activity.xml
<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <!-- 上記の図にあるViewの部分 -->
        <include layout="@layout/header_view" />

        <android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>

상단에 표시하고 싶은 View 레이아웃



header_view.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="wrap_content"
    android:orientation="vertical"
    app:layout_scrollFlags="scroll|enterAlwaysCollapsed">

<!-- --- -->

</LinearLayout>

ViewPager에서 ◯◯◯Fragment 레이아웃



fragment.xml
<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipToPadding="false"
    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

좋은 웹페이지 즐겨찾기