欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實(shí)現(xiàn)滑動(dòng)到頂部懸停的效果

 更新時(shí)間:2016年09月17日 11:38:34   投稿:daisy  
這篇文章給大家介紹一種不常見的實(shí)現(xiàn)Android滑動(dòng)到頂部懸停效果的方式,對(duì)大家開發(fā)Android具有一定的參考借鑒價(jià)值,有需要的朋友們可以來一起看看。

先來看下要實(shí)現(xiàn)效果圖:

查閱資料后,發(fā)現(xiàn)網(wǎng)上大部分都是用這種方法實(shí)現(xiàn)的:

多寫一個(gè)和需要懸浮的部分一模一樣的layout,先把浮動(dòng)區(qū)域的可見性設(shè)置為gone。當(dāng)浮動(dòng)區(qū)域滑動(dòng)到頂部的時(shí)候,就把浮動(dòng)區(qū)域B的可見性設(shè)置為VISIBLE。這樣看起來就像懸浮在頂部不動(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)步驟:

1、將需要懸浮的layout放到CollapsingToolbarLayout之外,AppBarLayout之內(nèi)

2、將CollapsingToolbarLayoutapp:layout_scrollFlags設(shè)置為scroll

3、給滾動(dòng)的NestedScroolView設(shè)置

      app:layout_behavior="@String/appbar_scrolling_view_behavior"

就大功告成了(記得根布局要是CoordinatorLayout)

最終效果:

總結(jié)

以上就是關(guān)于Android滑動(dòng)到頂部懸停效果的全部內(nèi)容,大家都學(xué)會(huì)了嗎?希望這篇文章對(duì)大家的學(xué)習(xí)或者工作帶來一定的幫助,如果有疑問大家可以留言交流。

相關(guān)文章

最新評(píng)論