首页 > 系统 > Android > 正文

android搜索框上下滑动变色效果

2019-12-12 04:27:46
字体:
来源:转载
供稿:网友

搜索框上下滑动变透明度是现在APP中很常见的效果,先看看效果:


首先来看下布局骨架:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="match_parent"  tools:context="www.sf.com.searchframe.MainActivity">   <ListView  android:id="@+id/listview"  android:layout_width="match_parent"  android:layout_height="match_parent" />   <!--搜索框-->  <LinearLayout  android:id="@+id/ll_search"  android:layout_width="match_parent"  android:layout_height="50dp"  android:background="#00ab95"  android:orientation="horizontal">  ......  </LinearLayout>  </RelativeLayout> 

整体就是一个相对布局,搜索框直接覆盖在listview上面,效果图最上方的图片是listview的头布局;
这个效果主要用到listview的滑动监听;
在listview滑动的时候不停的获取,imageview距离屏幕顶部的距离;
然后获取到imageview本身的高度;
通过这两个值判断imageview是否滑出屏幕,根据不同情况设置搜索框的透明度;

mListView.setOnScrollListener(new AbsListView.OnScrollListener() {     //监听滑动状态的改变   public void onScrollStateChanged(AbsListView view, int scrollState) {   }    //用于监听ListView屏幕滚动   public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {    int[] ints = new int[2];   mImage.getLocationOnScreen(ints);   /**    * mImage距离屏幕顶部的距离(图片顶部在屏幕最上面,向上滑动为负数,所以取反)    * 如果不隐藏状态栏,需要加上状态栏的高度;隐藏状态栏就不用加了;    */   int scrollY = -ints[1]+statusHeight;    //mImage这个view的高度   int imageHeight = mImage.getHeight();    if (mImage != null && imageHeight > 0) {    //如果“图片”没有向上滑动,设置为全透明    if (scrollY < 0) {    llSearch.getBackground().setAlpha(0);    } else {    //“图片”已经滑动,而且还没有全部滑出屏幕,根据滑出高度的比例设置透明度的比例    if (scrollY < imageHeight) {     int progress = (int) (new Float(scrollY) / new Float(imageHeight) * 255);//255     llSearch.getBackground().setAlpha(progress);    } else {     //“图片”全部滑出屏幕的时候,设为完全不透明     llSearch.getBackground().setAlpha(255);    }    }   }    }  }); 

源码下载:http://xiazai.VeVB.COm/201611/yuanma/AndroidSearch(VeVB.COm).rar

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表