标签:nap 自动 事件 out support 表示 距离 使用 near
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的依赖
标签:nap 自动 事件 out support 表示 距离 使用 near
原文地址:http://www.cnblogs.com/zhoushenglei/p/7224730.html