手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >android搜索框上下滑动变色效果
android搜索框上下滑动变色效果
摘要:搜索框上下滑动变透明度是现在APP中很常见的效果,先看看效果:首先来看下布局骨架:......整体就是一个相对布局,搜索框直接覆盖在list...

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

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

首先来看下布局骨架:

<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); } } } } });

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

【android搜索框上下滑动变色效果】相关文章:

android 搜索自动匹配关键字并且标红

android 添加随意拖动的桌面悬浮窗口

android快捷简单的实现音乐播放器

在Android中访问WebService接口的方法

android平台的左右上下都能滚动的效果

Android中的Button自定义点击效果实例代码

Android相册效果

Android三种GSM手机定位技术分析

Android开发之SurfaceView显示动画效果

Android中判断网络连接是否可用及监控网络状态

精品推荐
分类导航