Material Design之CollapsingToolbarLayout 相关属性和方法介绍

Material Design之CollapsingToolbarLayout 相关属性和方法介绍

转载请以链接形式标明出处: 

http://blog.csdn.net/lxk_1993/article/details/51443045

本文出自:【lxk_1993的博客】; 


废话不多说  先看看这东西的效果图。

一张没图片的和一张有图片的,图片太丑别怪我。还是把图换了吧,怕你们打我。

 

开始无知的我还以为是监听 onTouchListener 根据滑动的距离和位置来改变显示效果来实现的。

唉,今天无意中看到这个 CollapsingToolbarLayout 。

百度了一下,大致了解点。

不过东西还是要到 官方的地盘去看看原版的。

所以就去Android.support.design.widget这个包下找到“元凶”CollapsingToolbarLayout了。

然后顺便揪出了这些东西分享给大家。

1.android.support.design:collapsedTitleGravity   e.g. app:collapsedTitleGravity="left"

Specifies how the title should be positioned when collapsed.  
指定在折叠之后标题放置的位置 

2.android.support.design:collapsedTitleTextAppearance 

e.g. app:collapsedTitleTextAppearance="@color/colorPrimary"

The text appearance of the CollapsingToolbarLayouts title when it is fully 'collapsed'
Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". 
在折叠的时候标题文字的外观必须引用另一个资源 ,以“@[+][包:]类型:名称”或 主题属性形式”?(包:)类型:名称”。

2.1  android.support.design:expandedTitleTextAppearance 和上面的一样  在展开的时候标题文字的外观

3.android.support.design:contentScrim  e.g.  app:contentScrim="#ff5252"

The drawable to use as a scrim on top of the CollapsingToolbarLayouts content when it has been scrolled sufficiently off screen. 
指定在折叠之后的背景色

4.android.support.design:expandedTitleGravity e.g.  app:expandedTitleGravity="left|bottom"
Specifies how the title should be positioned when expanded. 
在展开的时候 标题放置的位置

5.android.support.design:expandedTitleMargin  e.g. app:expandedTitleMargin="16dp"
Specifies extra space on the start, top, end and bottom sides of the the expanded title text. 
设置边界距离 和 textview等效果一样

6.android.support.design:expandedTitleMarginBottom  底部的margin距离
7.android.support.design:expandedTitleMarginEnd 右边的margin距离
8.android.support.design:expandedTitleMarginStart 左边的margin距离

9.android.support.design:statusBarScrim  e.g. app:statusBarScrim="#123456"
The drawable to use as a scrim for the status bar content when the CollapsingToolbarLayout has been scrolled sufficiently off screen. 
在折叠的时候 状态栏的背景颜色

10。android.support.design:title  e.g. app:title="Title"
The title to show when titleEnabled is set to true. 
如果标题可用的话 显示的标题文字   

11.android.support.design:titleEnabled  e.g. app:titleEnabled="true"
Whether the CollapsingToolbarLayout should draw its own shrinking/growing title. 
是否显示标题

12.android.support.design:toolbarId   e.g. app:toolbarId="@id/toolbar"
The id of the primary Toolbar child that you wish to use for the purpose of collapsing.
在折叠的时候 显示的toolbar的id

13.app:layout_scrollFlags="scroll|exitUntilCollapsed" 
scroll - 想滚动就必须设置这个。
enterAlways - 实现quick return效果, 当向下移动时,立即显示View(比如Toolbar)。
exitUntilCollapsed - 向上滚动时收缩View,但可以固定Toolbar一直在上面。
enterAlwaysCollapsed - 当你的View已经设置minHeight属性又使用此标志时,你的View只能以最小高度进入,只有当滚动视图到达顶部时才扩大到完整高度。


测试的xml文件,可以copy进去测试就行。

一个问题NestedScrollView高度加上顶部AppBarLayout高度没超过屏幕高低滑动有问题(只能在AppBarLayout范围内才能滑动);

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:fitsSystemWindows="true">  
  7.   
  8.     <android.support.design.widget.AppBarLayout  
  9.         android:id="@+id/appBar"  
  10.         android:layout_width="match_parent"  
  11.         android:layout_height="300dp">  
  12.   
  13.         <android.support.design.widget.CollapsingToolbarLayout  
  14.             android:id="@+id/collapsingToolbarLayout"  
  15.             android:layout_width="match_parent"  
  16.             android:layout_height="match_parent"  
  17.             android:background="#64ffda"  
  18.             app:collapsedTitleGravity="left"  
  19.             app:contentScrim="#0097a7"  
  20.             app:expandedTitleGravity="left|bottom"  
  21.             app:expandedTitleMargin="16dp"  
  22.             app:layout_scrollFlags="scroll|exitUntilCollapsed"  
  23.             app:title="Title">  
  24.   
  25.             <!--设置展开区域的背景图片-->  
  26.             <ImageView  
  27.                 android:id="@+id/imageView"  
  28.                 android:layout_width="match_parent"  
  29.                 android:layout_height="match_parent"  
  30.                 android:scaleType="centerCrop"  
  31.                 android:src="@android:drawable/ic_dialog_email"  
  32.                 app:layout_collapseMode="parallax"  
  33.                 app:layout_collapseParallaxMultiplier="0.7" />  
  34.   
  35.             <!--layout_collapseMode (折叠模式) - 有两个值:  
  36.                  pin -  设置为这个模式时,当CollapsingToolbarLayout完全收缩后,Toolbar还可以保留在屏幕上。  
  37.                  parallax - 设置为这个模式时,在内容滚动时,CollapsingToolbarLayout中的View(比如ImageView)也可以同时滚动,实现视差滚动效果,通常和layout_collapseParallaxMultiplier(设置视差因子)搭配使用。  
  38.   
  39.                 layout_collapseParallaxMultiplier(视差因子) - 设置视差滚动因子,值为:0~1。  具体效果自行测试-->  
  40.   
  41.             <android.support.v7.widget.Toolbar  
  42.                 android:id="@+id/toolbar"  
  43.                 android:layout_width="match_parent"  
  44.                 android:layout_height="?attr/actionBarSize"  
  45.                 android:minHeight="?attr/actionBarSize"  
  46.                 app:layout_collapseMode="pin"  
  47.                 app:logo="@android:drawable/ic_dialog_map" />  
  48.   
  49.         </android.support.design.widget.CollapsingToolbarLayout>  
  50.     </android.support.design.widget.AppBarLayout>  
  51.   
  52.     <android.support.v4.widget.NestedScrollView  
  53.         android:layout_width="match_parent"  
  54.         android:layout_height="wrap_content"  
  55.         android:fillViewport="true"  
  56.         android:isScrollContainer="false"  
  57.         app:layout_behavior="@string/appbar_scrolling_view_behavior">  
  58.   
  59.         <LinearLayout  
  60.             android:layout_width="match_parent"  
  61.             android:layout_height="match_parent"  
  62.             android:orientation="vertical"  
  63.             android:padding="16dp">  
  64.   
  65.             <TextView  
  66.                 android:id="@+id/dialog"  
  67.                 android:layout_width="match_parent"  
  68.                 android:layout_height="48dp"  
  69.                 android:text="Material Dialog" />  
  70.   
  71.   
  72.             <TextView  
  73.                 android:layout_width="match_parent"  
  74.                 android:layout_height="48dp"  
  75.                 android:text="1" />  
  76.   
  77.             <TextView  
  78.                 android:layout_width="match_parent"  
  79.                 android:layout_height="48dp"  
  80.                 android:text="2" />  
  81.   
  82.             <TextView  
  83.                 android:layout_width="match_parent"  
  84.                 android:layout_height="48dp"  
  85.                 android:text="1" />  
  86.   
  87.             <TextView  
  88.                 android:layout_width="match_parent"  
  89.                 android:layout_height="48dp"  
  90.                 android:text="2" />  
  91.   
  92.             <TextView  
  93.                 android:layout_width="match_parent"  
  94.                 android:layout_height="48dp"  
  95.                 android:text="1" />  
  96.   
  97.             <TextView  
  98.                 android:layout_width="match_parent"  
  99.                 android:layout_height="48dp"  
  100.                 android:text="2" />  
  101.   
  102.             <TextView  
  103.                 android:layout_width="match_parent"  
  104.                 android:layout_height="48dp"  
  105.                 android:text="1" />  
  106.   
  107.             <TextView  
  108.                 android:layout_width="match_parent"  
  109.                 android:layout_height="48dp"  
  110.                 android:text="2" />  
  111.   
  112.         </LinearLayout>  
  113.     </android.support.v4.widget.NestedScrollView>  
  114.   
  115. </android.support.design.widget.CoordinatorLayout>  


里面的有个imageview,注释已经写的很清楚了。

当然 里面的toolbar 你们还可以设置其他的属性。

然后里面的NestedScrollView这货。
它和scrollview 基本上一样  但是它支持嵌套滚动  嵌套滚动默认是启用的。

还有一个属性,不过蛋疼的是这属性要全手打,没提示不知道怎么破。

android:fillViewportlike: android:fillViewport="true"
Defines whether the scrollview should stretch its content to fill the viewport. 
定义滚动视图是否应该伸展它的内容来填补视窗。


然后就是这个类的一些方法:

draw(Canvas canvas)
Manually render this view (and all of its children) to the given Canvas.
渲染指定的画布

//获取新的布局参数
generateLayoutParams(AttributeSet attrs)
Returns a new set of layout parameters based on the supplied attributes set.

//设置和获取折叠之后的标题位置
getCollapsedTitleGravity(); setCollapsedTitleGravity(int gravity)

//获取和设置折叠之后的背景
getContentScrim()
setContentScrim(Drawable drawable)
setContentScrimColor(int color)
setContentScrimResource(int resId)

//设置和获取展开的标题位置
setExpandedTitleGravity(int gravity)

getExpandedTitleGravity()

//获取和设置状态栏的颜色

getStatusBarScrim()
setStatusBarScrim(Drawable drawable)
setStatusBarScrimColor(int color)
setStatusBarScrimResource(int resId)

//设置和获取标题
setTitle(CharSequence title)
getTitle()

//获取和设置标题文字是否显示
isTitleEnabled()
setTitleEnabled(boolean enabled)

//设置折叠之后的标题文字外观
setCollapsedTitleTextAppearance(int resId)

//设置折叠之后的标题文字颜色
setCollapsedTitleTextColor(int color)

//设置展开的标题文字颜色
setExpandedTitleColor(int color)
//设置展开的标题文字外观
setExpandedTitleTextAppearance(int resId)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值