码迷,mamicode.com
首页 > 其他好文 > 详细

滑动栏效果

时间:2018-05-13 12:00:01      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:nes   lap   odi   width   utf-8   apk   span   http   view   

 

 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     >
 7 
 8     <android.support.design.widget.AppBarLayout
 9         android:layout_width="match_parent"
10         android:layout_height="200dp">
11 
12         <android.support.design.widget.CollapsingToolbarLayout
13             android:layout_width="match_parent"
14             android:layout_height="match_parent"
15             android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar"
16             app:layout_scrollFlags="scroll|exitUntilCollapsed"
17             android:background="@android:color/white">
18             <!-- 。。。顶部布局。。。-->
19 
20         </android.support.design.widget.CollapsingToolbarLayout>
21 
22     </android.support.design.widget.AppBarLayout>
23 
24     <!--
25          android:fillViewport="true"
26          在ScrollView中嵌套 viewpager
27         必须设置android:fillViewport="true"
28     -->
29 
30     <android.support.v4.widget.NestedScrollView
31         android:layout_width="match_parent"
32         android:layout_height="match_parent"
33         android:fillViewport="true"
34         app:layout_behavior="@string/appbar_scrolling_view_behavior">
35         <!--  。。。底部布局。。。-->
36         <!--只能有一个直接子布局-->
37         
38     </android.support.v4.widget.NestedScrollView>
39 </android.support.design.widget.CoordinatorLayout>

 

滑动栏效果

标签:nes   lap   odi   width   utf-8   apk   span   http   view   

原文地址:https://www.cnblogs.com/the-wang/p/9031162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!