我想在这个活动中顺利滚动

时间:2016-07-02 19:30:02

标签: android android-layout android-viewpager behavior nestedscrollview

现在,我的状态是。

  1. 工具栏,ImageView,NestedScrollView,TabLayout和(NestedScrollView和RecyclerView in)ViewPager与协调器布局中的PagerFragmentAdapter

  2. 我希望使用CoordinatorLayout.Behaviors在此Activty中顺畅滚动。

  3. 我认为应该有3个行为与NestedScrollingChild,HeaderBehavior的First NestedScrollView和TabLayoutBehavior的TabLayout和ViewPagerBehavior的ViewPager(带有NestedScrollView和RecyclerView)。

  4. 我不知道如何管理他们的NestedScrolling

  5. 请给我一些建议或解决方案。

  6. 谢谢:)

    <?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.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            android:minHeight="?android:attr/actionBarSize"
            app:contentInsetEnd="0px"
            app:contentInsetStart="0px">
    
            <!-- Toolbar Layout Here -->
        </android.support.v7.widget.Toolbar>
    
        <ImageView
            android:id="@+id/iv_top_photo"
            android:layout_width="match_parent"
            android:layout_height="450dp"
            android:scaleType="centerCrop" />
    
        <android.support.v4.widget.NestedScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_behavior=".HeaderBehavior">
    
            <LinearLayout
                android:id="@+id/header_content_container"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/white"
                android:orientation="vertical">
    
                <!-- Header Layout Here -->
            </LinearLayout>
        </android.support.v4.widget.NestedScrollView>
    
        <android.support.design.widget.TabLayout
                android:id="@+id/tab_layout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="#FFF"
                android:minHeight="?android:attr/actionBarSize"
                app:layout_behavior=".TabLayoutBehavior"
                app:tabIndicatorColor="@color/colorPrimary"
                app:tabIndicatorHeight="3dp"
                app:tabSelectedTextColor="@color/colorPrimary"
                app:tabTextColor="#000" />
    
        <android.support.v4.view.ViewPager
                android:id="@+id/view_pager"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fillViewport="true"
                android:overScrollMode="never"
                app:layout_behavior=".ViewPagerBehavior" />
    </android.support.design.widget.CoordinatorLayout>
    

0 个答案:

没有答案