K
K
Konstantin Dovnar2015-11-05 23:50:48
Android
Konstantin Dovnar, 2015-11-05 23:50:48

RecyclerView + AppBarLayout + Tabs: how?

At the moment, the template uses the following structure:

<CoordinatorLayout>
    <AppBarLayout>
        <!-- Какие то внутренности -->
        <TabLayout/>
    <AppBarLayout>

    <NestedScrollView>
        <ViewPager/>
    </NestedScrollView>
</CoordinatorLayout>

But there was a need to place lists in tabs, but somehow it doesn’t work out very well.
1: Just create a RecyclerView inside the ViewPager , but in this case, the scroll inside the scroll will be ( NestedScrollView > RecyclerView ). 2: Remove NestedScrollView , but in this case the ViewPager will not scroll, which means the header remains expanded. 3: Replace NestedScrollView with RecyclerView , which is somehow not logical either. How is it possible to implement lists in tabs with a collapsible header? In fact, for example, in Google Music, this is done if examples are needed.


Answer the question

In order to leave comments, you need to log in

2 answer(s)
O
Oleg Gamega, 2015-11-05
@gadfi

all the same link https://github.com/chrisbanes/cheesesquare (too lazy to get into your code)

<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2015 The Android Open Source Project
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->

<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|snap" />

        <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>

A
aol-nnov, 2015-11-06
@aol-nnov

the other day on Habré it was !

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question