CoordinatorLayout中设置layout_behavior的布局无法垂直居中问题解决

这两天项目中需要实现一个页面,大致的布局是顶部一块区域是一部分内容,然后下面是一个title条,这个title条下面是一个列表,因为列表的数据可能有很多,所以这个页面是需要整体进行滑动的,因为只让下面的listview滚动的话,那么下面的展示区域就太小了,因为我们的listview的Item内容也比较多,但是说如果是scrollview嵌套listview,那么那个title条也会被滚动出屏幕,但是我们的那个title条里面还有触发下面listview删除、修改的功能,所以不能滚动出屏幕,需要有一个吸顶的效果。
  考虑过用stickylistheaderslistview,但是未免太麻烦了,所以我们自然而然的选择了Material Design中很有滚动效果的CoordinatorLayout了,它也很擅长做这类滚动至屏幕顶端然后停止滚动的事情。接下来就跟以前似得开始写代码了,xml布局如下:

<android.support.design.widget.CoordinatorLayout  
    android:overScrollMode="never"  
    android:layout_alignParentTop="true"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent">  
  
    <android.support.design.widget.AppBarLayout  
        android:overScrollMode="never"  
        app:elevation = "0dp"  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content">  
  
        <android.support.design.widget.CollapsingToolbarLayout  
            android:id="@+id/collapsingToolbarLayout"  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content"  
            android:overScrollMode="never"  
            app:layout_scrollFlags="scroll|exitUntilCollapsed">  
  
         <LinearLayout  
            android:id="@+id/firstLl"  
            android:orientation="vertical"  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content">  
  
            <TextView  
                android:layout_width="match_parent"  
                android:layout_height="49dip"  
                android:background="@color/color_ffffff"  
                android:drawableLeft="@drawable/user_details_icon_basic"  
                android:drawablePadding="5dip"  
                android:gravity="center_vertical"  
                android:paddingLeft="16dip"  
                android:text="a信息"  
                android:textColor="@color/color_3399ff"  
                android:textSize="15sp"/>  
  
            <View style="@style/view_line"/>  
  
            <RelativeLayout  
                android:layout_width="match_parent"  
                android:layout_height="wrap_content"  
                android:background="@color/color_ffffff">  
  
                <TextView  
                    style="@style/style_basicinfo"  
                    android:layout_alignParentLeft="true"  
                    android:text="1字段"/>  
  
                <TextView  
                    style="@style/style_basicinfo"  
                    android:layout_alignParentRight="true"/>  
  
            </RelativeLayout>  
  
            <RelativeLayout  
                android:layout_width="match_parent"  
                android:layout_height="wrap_content"  
                android:background="@color/color_ffffff">  
  
                <TextView  
                    style="@style/style_basicinfo"  
                    android:layout_alignParentLeft="true"  
                    android:text="2字段"/>  
  
                <TextView  
                    style="@style/style_basicinfo"  
                    android:textColor="@color/color_3399ff"  
                    android:layout_alignParentRight="true"/>  
  
            </RelativeLayout>  
  
            <RelativeLayout  
                android:layout_width="match_parent"  
                android:layout_height="wrap_content"  
                android:background="@color/color_ffffff">  
  
                <TextView  
                    style="@style/style_basicinfo"  
                    android:layout_alignParentLeft="true"  
                    android:text="3字段"/>  
  
                <TextView  
                    style="@style/style_basicinfo"  
                    android:layout_alignParentRight="true"/>  
  
            </RelativeLayout>  
  
            <LinearLayout  
                android:paddingTop="15dip"  
                android:background="@color/color_ffffff"  
                android:layout_width="match_parent"  
                android:layout_height="wrap_content">  
                <View  
                    style="@style/view_line"/>  
            </LinearLayout>  
  
            <View  
                android:background="@color/color_e5e5e5"  
                android:layout_width="match_parent"  
                android:layout_height="16dip"/>  
        </LinearLayout>  
    </android.support.design.widget.CollapsingToolbarLayout>  
  
</android.support.design.widget.AppBarLayout>  
  
<LinearLayout  
    app:layout_behavior="@string/appbar_scrolling_view_behavior"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:orientation="vertical">  
  
    <RelativeLayout  
            android:id="@+id/secondRl"  
            android:background="@color/color_ffffff"  
            android:paddingRight="16dip"  
            android:layout_width="match_parent"  
            android:layout_height="49dip">  
  
            <TextView  
                android:layout_width="wrap_content"  
                android:layout_height="wrap_content"  
                android:layout_alignParentLeft="true"  
                android:drawableLeft="@drawable/user_details_icon_car"  
                android:drawablePadding="5dip"  
                android:gravity="center_vertical"  
                android:layout_centerVertical="true"  
                android:paddingLeft="16dip"  
                android:text="b信息"  
                android:textColor="@color/color_3399ff"  
                android:textSize="15sp"/>  
  
            <ImageView  
                android:layout_alignParentRight="true"  
                android:layout_centerVertical="true"  
                android:src="@drawable/received_details_btn_add"  
                android:layout_width="wrap_content"  
                android:layout_height="wrap_content"/>  
  
            <ImageView  
                android:layout_centerVertical="true"  
                android:layout_toLeftOf="@+id/addCarIv"  
                android:layout_marginRight="15dip"  
                android:src="@drawable/received_details_btn_edit"  
                android:layout_width="wrap_content"  
                android:layout_height="wrap_content"/>  
  
            <ImageView  
                android:visibility="gone"  
                android:layout_alignParentRight="true"  
                android:layout_centerVertical="true"  
                android:src="@drawable/received_details_btn_cancel"  
                android:layout_width="wrap_content"  
                android:layout_height="wrap_content"/>  
  
        </RelativeLayout>  
  
        <View  
            style="@style/view_line"/>  
  
        <LinearLayout  
            android:id="@+id/addLl"  
            android:gravity="center"  
            android:orientation="vertical"  
            android:background="@color/color_ffffff"  
            android:layout_width="match_parent"  
            android:layout_height="match_parent">  
  
            <ImageView  
                android:src="@drawable/received_icon_details_empty"  
                android:layout_width="wrap_content"  
                android:layout_height="wrap_content"/>  
  
            <TextView  
                android:textSize="15sp"  
                android:text="此处有点空"  
                android:layout_marginTop="15dip"  
                android:textColor="@color/color_333333"  
                android:layout_width="wrap_content"  
                android:layout_height="wrap_content"/>  
  
            <TextView  
                android:textSize="18sp"  
                android:text="快来添加吧"  
                android:layout_marginTop="10dip"  
                android:textColor="@color/color_3399ff"  
                android:layout_width="wrap_content"  
                android:layout_height="wrap_content"/>  
  
        </LinearLayout>  
  
        <android.support.v7.widget.RecyclerView  
            android:id="@+id/carlistview"  
            android:overScrollMode="never"  
            android:background="@color/color_ffffff"  
            android:divider="@drawable/developcar_shape_divider"  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content"/>  
    </LinearLayout>  
</android.support.design.widget.CoordinatorLayout>

上面可以看到id为firstLl的LinearLayout就是我们最初说的那个顶部布局,而id为secondRl的RelativeLayout则是我们说的那个需要吸顶的title条了,用过CoordinatorLayout的同学都知道,如果哪部分需要滑动出屏幕,那么那部分就需要写在CollapsingToolbarLayout布局中,而CollapsingToolbarLayout需要写在AppBarLayout中,同时为了能够使这部分内容能够滑动或者找到其在CoordinatorLayout中的位置,需要给这部分布局设置layout_scrollFlags属性,一般都设置值为scroll|exitUntilCollapsed因为我们也不需要特殊的渐变之类的效果,只要能滑出屏幕就好了,然后呢,需要滑动到顶部然后吸顶的布局我们需要设置layout_behavior属性,它告诉了CoordinatorLayout自己在滑动时候执行什么行为,为了制造吸顶需要设置其值为@string/appbar_scrolling_view_behavior就好了,然后运行一看貌似一切都很美好。
  其实我上面的布局还有一个id为addLl的LinearLayout,它是干嘛的呢?大家都知道列表没有数据的时候,总要给用户一些提示吧,它就是那个提示,其实里面就是一些文字以及图片了,但是是居中展示的,不过发现一个问题,就是当列表为空这个布局展示的时候,里面的内容并没有完全居中,只是水平方向上居中了,垂直方向上是在屏幕底部的,这是为啥呢?其实就是一个简单的布局,但是它是被放在CoordinatorLayout中的,后来经过多次调试,发现是layout_scrollFlags的scroll值捣的鬼,如果不设置这个scroll值,那么下面是可以居中的,但是顶部不能滑动了,如果设置的话,顶部是能够滑动了,但是下面不能居中了。所以最终的解决方式是动态设置这个layout_scrollFlags属性了,实例代码如下:

//因为在CoordinatorLayout中如果给CollapsingToolbarLayout设置的ScrollFlags有scroll,那么下面设置layout_behavior的布局就无法垂直居中  
//但是不设置scroll属性,那么上面的有无法滑动然后吸顶。所以只能够动态设置了  
private void setCollapsingToolbarLayoutFlag(@AppBarLayout.LayoutParams.ScrollFlags int flags){  
    AppBarLayout.LayoutParams layoutParams = (AppBarLayout.LayoutParams) binding.collapsingToolbarLayout.getLayoutParams();  
    layoutParams.setScrollFlags(flags);  
    binding.collapsingToolbarLayout.setLayoutParams(layoutParams);  

上面的注释写的也很清楚,分别在下面的recyclerview有无数据时候动态调用这个setCollapsingToolbarLayoutFlag方法来动态设置了。这样子问题就算解决了。但是为啥不能居中还是没太搞明白,有知道的朋友还请多多指教。另外做的时候还发现一个问题,就是AppBarLayout会出现阴影,这个是android5.0之后material design自带的,但是在某些手机上不好看,我们就想要去掉,是要设置elevation属性,但是一定是app:elevation否则会无效哦,因为对于AppBarLayout这个算是自定义属性。
   好的,以上就是本次的全部内容,有问题欢迎批评指正。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,482评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,377评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,762评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,273评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,289评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,046评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,351评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,988评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,476评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,948评论 2 324
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,064评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,712评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,261评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,264评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,486评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,511评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,802评论 2 345

推荐阅读更多精彩内容