無(wú)圖說(shuō)卵意推,先上圖
jianshu-top.gif
查閱資料后密任,發(fā)現(xiàn)網(wǎng)上大部分都是用這種方法實(shí)現(xiàn)的:
多寫一個(gè)和需要懸浮的部分一模一樣的layout,先把浮動(dòng)區(qū)域的可見(jiàn)性設(shè)置為gone脏里。當(dāng)浮動(dòng)區(qū)域滑動(dòng)到頂部的時(shí)候果漾,就把浮動(dòng)區(qū)域B的可見(jiàn)性設(shè)置為VISIBLE球切。這樣看起來(lái)就像懸浮在頂部不動(dòng)了。
具體看下邊文章 :
高仿美團(tuán)app绒障,浮動(dòng)layout滑動(dòng)到頂部懸停效果
Android實(shí)例-仿美團(tuán)app吨凑,浮動(dòng)layout滑動(dòng)到頂部懸停效果
這里介紹的是另外一種方式:
使用design包中的控件
<android.support.design.widget.CoordinatorLayout
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:fitsSystemWindows="true"
tools:context="com.peipei.app.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="250dp">
<android.support.design.widget.CollapsingToolbarLayout
app:layout_scrollFlags="scroll"
app:contentScrim="#000000"
android:layout_width="match_parent"
android:layout_height="220dp">
<TextView
android:text="banner區(qū)域"
android:gravity="center"
android:textColor="#ffffff"
android:background="#987545"
android:layout_width="match_parent"
android:layout_height="220dp"/>
</android.support.design.widget.CollapsingToolbarLayout>
<TextView
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="30dp"
android:text="懸浮的部分"/>
</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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:text="@string/large_text"/>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
實(shí)現(xiàn)步驟:
- 將需要懸浮的layout放到CollapsingToolbarLayout之外,AppBarLayout之內(nèi)
- 將CollapsingToolbarLayout的app:layout_scrollFlags設(shè)置為scroll
- 給滾動(dòng)的NestedScroolView設(shè)置
app:layout_behavior="@String/appbar_scrolling_view_behavior"
就大功告成了(記得根布局要是CoordinatorLayout)
最終效果:
damo-jianshu-top.gif