美文网首页帮助类
使用CoordinatorLayout布局来实现上滑隐藏,下滑显

使用CoordinatorLayout布局来实现上滑隐藏,下滑显

作者: 根艮哏艮根 | 来源:发表于2018-01-16 11:03 被阅读359次

    效果图


    效果图

    主要是在布局中展示,贴上布局

    <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="wrap_content"
                android:background="?attr/colorPrimary"
                app:contentInsetStart="0dp"
                app:layout_scrollFlags="scroll|enterAlways"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
    
                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical">
    
                    <include layout="@layout/im_frag_common_top"></include>
    
    
                </LinearLayout>
            </android.support.v7.widget.Toolbar>
    
            <android.support.design.widget.TabLayout
                android:id="@+id/tablayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/white"
                app:tabBackground="@color/white"
                app:tabIndicatorHeight="0dp"
                app:tabSelectedTextColor="@color/black"
                app:tabTextColor="@color/black2"
               >
    
            </android.support.design.widget.TabLayout>
        </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.v4.view.ViewPager>
    
    </android.support.design.widget.CoordinatorLayout>
    

    说明

     app:contentInsetStart="0dp"  这个是去除TabLayout默认的margin值
    

    相关文章

      网友评论

      • 艾回:能不能实现上滑显示,下滑隐藏标题栏。我做了一个,不太完美。不知道怎么修改

      本文标题:使用CoordinatorLayout布局来实现上滑隐藏,下滑显

      本文链接:https://www.haomeiwen.com/subject/miqsoxtx.html