• 更高级的ToolBar使用----AppBarLayout


    AppBarLayout实际是一个LinearLayout,不过 Design Support库对它做了很多滚动事件,

    将Toolbar嵌套到AppBarLayout中,然后给页面显示主题内容的控件指定一个布局行为

      <android.support.design.widget.AppBarLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
    
                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:background="?attr/colorPrimary"
                    android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"

              scroll表示当内容上滚动Toobar会跟着向上滚动并隐藏,
              enterAlways表示当内容乡下滚动时,ToolBar会乡下滚动并显示。
              snap表示当内容还没有完全隐藏或显示的时候,会根据当前滚动的距离,自动选择隐藏还是显示 app:layout_scrollFlags
    ="scroll|enterAlways|snap" /><!--Toobar在APPBarlayout中添加这个属性ToolBar会跟着主题内容上滑隐藏,下划出现--> </android.support.design.widget.AppBarLayout>

    指定布局行为

    app:layout_behavior="@string/appbar_scrolling_view_behavior"

    别忘了添加Design Support的依赖

  • 相关阅读:
    【布局】483- 推荐 15 种水平垂直居中布局方案
    【Web技术】482- 浏览器将标签转成 DOM 的过程
    int和Integer的区别
    Rendom类
    java注释
    linux
    AI
    重载和重写
    Iterator接口
    集合和数组的区别
  • 原文地址:https://www.cnblogs.com/zhoushenglei/p/7224730.html
Copyright © 2020-2023  润新知