布局参数的使用:
一、Toolbar的基本用例
- mToolBar.setNavigationOnclickListener(); //用于设置左上角导航图标的点击事件
- mToolbar.inflateMenu(R.menu.toolbar_menu); // 右边menu数据
- mToolbar.setOnMenuItemClickListener(); // 点击菜单item的响应事件
- 注意:
- 使用时候需要修改为无actionBar主题,否则会出现问题;
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
- 必须使用V7包下的Toolbar,同时继承支持Toolbar的AppCompatActivity,否则可能如setSupportActionBar方法可能使用不了。
<android.support.v7.widget.Toolbar
android:id="@+id/tool_bar"
android:layout_width="match_parent"
android:layout_height="100dp"
android:minHeight="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:gravity="center_horizontal"
android:theme="@style/AlertDialog.AppCompat.Light"
app:logo="@mipmap/ic_launcher" //图标
app:navigationIcon="@drawable/arrow_back_black_18x18" //左上角导航图标颜色
app:popupTheme="@style/toolBar_pop_item"
app:subtitle="副标题" //副标题
app:subtitleTextColor="#fff" //副标题颜色
app:title="标题" //标题
app:titleTextColor="#fff" //标题颜色/>
<!--toolBar_pop_item--> //pop样式
<style name="toolBar_pop_item" parent="Base.Theme.AppCompat.Light">
<item name="android:textColor">@color/colorAccent</item>
</style>
<!--R.menu.toolbar_menu-->
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_setting"
android:icon="@android:drawable/ic_menu_search"
android:orderInCategory="100"
android:title="测试1"
app:showAsAction="ifRoom" /> //如果有空间就在toolbar上显示处理
<item
android:id="@+id/action_notify"
android:icon="@android:drawable/ic_lock_power_off"
android:orderInCategory="100"
android:title="测试2"
app:showAsAction="ifRoom" />
<item
android:id="@+id/action_search"
android:icon="@android:drawable/ic_menu_search"
android:orderInCategory="100"
android:title="设置"
app:showAsAction="never" /> //以menu菜单的形式展现
<item
android:id="@+id/action_search2"
android:icon="@android:drawable/ic_menu_search"
android:orderInCategory="100"
android:title="关于"
app:showAsAction="always" /> //表示永远显示在Toolbar中,如果屏幕空间不够则不显示
</menu>
二、Toolbar的特殊用法
由于有些经常性的需求如标题在中间,可以在Toolbar中添加控件,这时候可以认为是一个Framlayout,在控件中添加属性layout_gravite 即可。左右两边如果有特殊需求也能如此处理。
三、Toolbar与一些控件的配合使用(CoordinatorLayout+appbarLayout+collapsedToolbarLayout +toolbar)
1.appBarLayout使用(AppBarLayout实现相关效果必须依赖于CoordinatorLayout(协调者布局)使用)
参数scrollFlags(该属性是给AppBarLayout的子view使用)
- scroll: 添加该属性后,该子view会随着scrollview滑动而滑动
- enterAlways:配合scrollview使用,下拉时候,appBarLayout中的子view先回到滑动到可视区,然后继续下方scrollview才开始滚动
- enterAlwyasCollapsed:enterAlaways的补充使用,该方法要配合min_height使用,下拉时候,appBarLayout中子view先下滑到最小高度,当继续下拉,scrollview滑动顶点,再次下拉到子view最大宽度
- exitUnitlCollapsed:用于上滑该子view滑出屏幕的效果,也需要配合min_height使用,子view先上滑至最小宽度,便不再向上滑动
- snap:弹性显示子view,添加该参数后会到达上面参数的极限情况,滑动超过一定比率就滑动上面四个参数产生效果的极限情况
- 注意:
- enterAlways,enterAlwaysCollapsed,exitUnitlCollapsed,snap必须在scoll前提下才能使用
- enterAlwaysCollapsed必须有enterAlways参数才能产生效果
- enterAlways,包括enterAlwaysCollapsed和exitUnitlCollapsed最好不要同时使用会出现滑动异常
2.AppBarLayout实现tab吸顶效果用例
注意:
- 吸顶的控件不一定使用tabLayout,可以是viewGroup包裹的自定义tab,也可以是其他控件,不能添加scroll_flags,如果添加会产生跟随滑动
- appbarLayout下方的控件必须使用如NestScrollview,Recyclerview等材料设计控件,并且添加app:layout_behavior="@string/appbar_scrolling_view_behavior"参数
- 如果在NestScrollview中加入的是viewpager,需要在NestScrollview中添加 android:fillViewport="true" 否则viewpager内容是不会显示的可参考 ScrollView 嵌套 ViewPager 不显示
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/tool_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:gravity="center_horizontal"
android:minHeight="?attr/actionBarSize"
android:theme="@style/AlertDialog.AppCompat.Light"
app:logo="@mipmap/ic_launcher"
app:navigationIcon="@drawable/arrow_back_black_18x18"
app:popupTheme="@style/toolBar_pop_item"
app:subtitle="副标题"
app:subtitleTextColor="#fff"
app:title="标题"
app:titleTextColor="#fff" />
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".CoordinatorActivity">
<!--toolbar必须放在AppbarLayout中构成响应滚动事件-->
<!--appbar必须使协调者布局中的直接子view-->
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- 需要跟随滚动的控件,必须加入scroll_flags-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@color/colorPrimaryDark"
app:layout_scrollFlags="scroll|snap|enterAlways" />
<!-- 实现吸顶的控件,这个控件可以是tabLayout,也可以是其他自定义的tab控件 -->
<TableLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/colorAccent">
</TableLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
</LinearLayout>
3.CollapsingToolbarLayout相关使用
定义:用于包装ToolBar,实现折叠应用程序栏,作为AppBarLayout的直接子view使用
1. 折叠式标题,需要在CollapsingToolbarLayout中添加app:layout_scrollFlags="scroll|exitUntilCollapsed",scroll是用于跟随滑动,extitUntilCollapsed用于标题栏折叠时候不至于全部滑动上去,此时collapsingToolBarLayout要设置固定高度,不能使用 wrap_layout。
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<!--scrollFlags必须为exitUntilCollapsed,固定一个大于Toolbar的高度,否则没有折叠效果-->
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/ctl"
android:layout_width="match_parent"
android:layout_height="200dp" //固定高度,使用wrap_layout无法达到效果
app:layout_scrollFlags="scroll|exitUntilCollapsed" //这两个参数必须设置
app:title="这是标题">
<android.support.v7.widget.Toolbar
android:id="@+id/tool_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@color/colorAccent"
android:gravity="center_horizontal"
android:minHeight="?attr/actionBarSize"
app:logo="@mipmap/ic_launcher"
app:navigationIcon="@drawable/arrow_back_black_18x18"
app:popupTheme="@style/toolBar_pop_item"
app:subtitle="副标题"
app:subtitleTextColor="#fff"
app:title="标题"
app:titleTextColor="#fff" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
出现的问题
- collapsingToolbarLayout中的标题和Toolbar中的标题取舍问题,如果要使用toolbar中的标题应该设置就要么不在xml设置collapsingToolbarLayout的标题,要么在代码中设置标题为空,一旦赋了标题,那么就会以collapsingToolbarLayout中标题为主
- Toolbar并没有固定在标题上(红色背景),而是向上滑动到屏幕外了,如果要固定Toolbar不移动,应该使用的方法是layout_collapseMOde = "pin"(放在Toolabar的xml中) ,这样toolbar就固定在标题栏位置不会向上滑动了。
2.contentScrim和statusBarScrim(CollapsingToolbarLayout中)
- contentScrim用于CollapsingToolbarLayout折叠后显示的颜色(默认为colorPrimary)
- statusBarScrim是折叠后状态栏显示的颜色(默认为colorPrimaryDark),如果要使用该资源值必须在代码中调用
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);否则不会出现任何效果
<!--toolbar必须放在AppbarLayout中构成响应滚动事件-->
<!--appbar必须使协调者布局中的直接子view-->
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<!--scrollFlags必须为exitUntilCollapsed,固定一个大于Toolbar的高度,否则没有折叠效果-->
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/ctl"
android:layout_width="match_parent"
android:layout_height="200dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:contentScrim="@android:color/holo_red_dark" //折叠后标题栏显示颜色
app:statusBarScrim="@color/design_default_color_primary" //折叠后状态栏显示颜色
app:title="">
<android.support.v7.widget.Toolbar
android:id="@+id/tool_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@color/colorAccent"
android:gravity="center_horizontal"
android:minHeight="?attr/actionBarSize"
app:logo="@mipmap/ic_launcher"
app:navigationIcon="@drawable/arrow_back_black_18x18"
app:popupTheme="@style/toolBar_pop_item"
app:subtitle="副标题"
app:layout_collapseMode="pin"
app:subtitleTextColor="#fff"
app:title="标题"
app:titleTextColor="#fff" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
3.添加图片背景,实现展开图片,折叠标题栏效果
利用layout_collapseMode = "parallax"添加在图片或者其他控件中,这样就完成了可折叠的效果,由于CollapsingToolabarLayout相当于Framelayout所以图片控件应放在Toolbar的上方,同时为了防止Toolbar的背景覆盖图片,应设置背景为透明。同时应该给折叠后的标题设置contetnScrim否则图片折叠不会被覆盖。
<!--toolbar必须放在AppbarLayout中构成响应滚动事件-->
<!--appbar必须使协调者布局中的直接子view-->
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<!--scrollFlags必须为exitUntilCollapsed,固定一个大于Toolbar的高度,否则没有折叠效果-->
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/ctl"
android:layout_width="match_parent"
android:layout_height="200dp"
app:contentScrim="@color/colorAccent"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/timg"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.7" />
<android.support.v7.widget.Toolbar
android:id="@+id/tool_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/transparent"
android:gravity="center_horizontal"
app:layout_collapseMode="pin"
app:navigationIcon="@drawable/arrow_back_black_18x18"
app:popupTheme="@style/toolBar_pop_item"
app:subtitle="副标题"
app:subtitleTextColor="@color/white"
app:title="标题"
app:titleTextColor="@color/white" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
注意
- 在xml设置标题颜色会导致无法生效,必须在代码中进行添加collapsingToolbarLayout.setCollapsedTitleTextColor();collapsingToolbarLayout.setExpandedTitleColor()
- layout_collapseMode = 'pin' 用于固定,不随滑动,可以用于Toolar的固定
- layout_collapseMode = "parallax" 图片或者布局的折叠,其中跟随一个属性为layout_collapseParallaxMultiplier = "0-1",为0时候,图片跟随滑动,滑出视野,为1.0时候,图片固定下面内容覆盖图片,为0.5,图片既向上滑动,下面内容向上覆盖,并且速度一致,就像电视关机上下边缘同时变黑,并向中间移动。公式为 下半部分高度 / 视图总高度 = (0.0 - 1.0 ) 取值范围是 0.0 - 1.0