Android PullToZoomListView实现放大回弹效果
另外一个相同项目的地址https://github.com/Frank-Zhu/PullZoomView
转自http://blog.csdn.net/wangjinyu501/article/details/38367669
- package com.kince.android.pulltozoomlistview;
- import android.app.Activity;
- import android.content.Context;
- import android.os.SystemClock;
- import android.util.AttributeSet;
- import android.util.DisplayMetrics;
- import android.util.Log;
- import android.view.MotionEvent;
- import android.view.ViewGroup;
- import android.view.animation.Interpolator;
- import android.widget.AbsListView;
- import android.widget.FrameLayout;
- import android.widget.ImageView;
- import android.widget.ListView;
- public class PullToZoomListView extends ListView implements
- AbsListView.OnScrollListener {
- private static final int INVALID_VALUE = -1;
- private static final String TAG = "PullToZoomListView";
- private static final Interpolator sInterpolator = new Interpolator() {
- public float getInterpolation(float paramAnonymousFloat) {
- float f = paramAnonymousFloat - 1.0F;
- return 1.0F + f * (f * (f * (f * f)));
- }
- };
- int mActivePointerId = -1;
- private FrameLayout mHeaderContainer;
- private int mHeaderHeight;
- private ImageView mHeaderImage;
- float mLastMotionY = -1.0F;
- float mLastScale = -1.0F;
- float mMaxScale = -1.0F;
- private AbsListView.OnScrollListener mOnScrollListener;
- private ScalingRunnalable mScalingRunnalable;
- private int mScreenHeight;
- private ImageView mShadow;
- private boolean mScrollable = true;
- private boolean mShowHeaderImage = true;
- private boolean mZoomable = true;
- public PullToZoomListView(Context paramContext) {
- super(paramContext);
- init(paramContext);
- }
- public PullToZoomListView(Context paramContext,
- AttributeSet paramAttributeSet) {
- super(paramContext, paramAttributeSet);
- init(paramContext);
- }
- public PullToZoomListView(Context paramContext,
- AttributeSet paramAttributeSet, int paramInt) {
- super(paramContext, paramAttributeSet, paramInt);
- init(paramContext);
- }
- private void endScraling() {
- if (this.mHeaderContainer.getBottom() >= this.mHeaderHeight)
- Log.d("mmm", "endScraling");
- this.mScalingRunnalable.startAnimation(200L);
- }
- private void init(Context paramContext) {
- DisplayMetrics localDisplayMetrics = new DisplayMetrics();
- ((Activity) paramContext).getWindowManager().getDefaultDisplay()
- .getMetrics(localDisplayMetrics);
- this.mScreenHeight = localDisplayMetrics.heightPixels;
- this.mHeaderContainer = new FrameLayout(paramContext);
- this.mHeaderImage = new ImageView(paramContext);
- int i = localDisplayMetrics.widthPixels;
- setHeaderViewSize(i, (int) (9.0F * (i / 16.0F)));
- this.mShadow = new ImageView(paramContext);
- FrameLayout.LayoutParams localLayoutParams = new FrameLayout.LayoutParams(
- -1, -2);
- localLayoutParams.gravity = 80;
- this.mShadow.setLayoutParams(localLayoutParams);
- this.mHeaderContainer.addView(this.mHeaderImage);
- this.mHeaderContainer.addView(this.mShadow);
- addHeaderView(this.mHeaderContainer);
- this.mScalingRunnalable = new ScalingRunnalable();
- super.setOnScrollListener(this);
- }
- private void onSecondaryPointerUp(MotionEvent paramMotionEvent) {
- int i = (paramMotionEvent.getAction()) >> 8;
- Log.d("onSecondaryPointerUp", i + "");
- if (paramMotionEvent.getPointerId(i) == this.mActivePointerId)
- if (i != 0) {
- this.mLastMotionY = paramMotionEvent.getY(1);
- this.mActivePointerId = paramMotionEvent.getPointerId(0);
- return;
- }
- }
- private void reset() {
- this.mActivePointerId = -1;
- this.mLastMotionY = -1.0F;
- this.mMaxScale = -1.0F;
- this.mLastScale = -1.0F;
- }
- public ImageView getHeaderView() {
- return this.mHeaderImage;
- }
- public void hideHeaderImage() {
- this.mShowHeaderImage = false;
- this.mZoomable = false;
- this.mScrollable = false;
- removeHeaderView(this.mHeaderContainer);
- }
- public boolean isScrollable() {
- return this.mScrollable;
- }
- public boolean isZoomable() {
- return this.mZoomable;
- }
- public boolean onInterceptTouchEvent(MotionEvent paramMotionEvent) {
- if (!this.mZoomable) {
- return super.onInterceptTouchEvent(paramMotionEvent);
- }
- switch (paramMotionEvent.getAction() & MotionEvent.ACTION_MASK) {
- case MotionEvent.ACTION_DOWN:
- this.mActivePointerId = paramMotionEvent.getPointerId(0);
- this.mMaxScale = (this.mScreenHeight / this.mHeaderHeight);
- break;
- case MotionEvent.ACTION_UP:
- reset();
- break;
- case MotionEvent.ACTION_POINTER_DOWN:
- this.mActivePointerId = paramMotionEvent
- .getPointerId(paramMotionEvent.getActionIndex());
- break;
- case MotionEvent.ACTION_POINTER_UP:
- onSecondaryPointerUp(paramMotionEvent);
- break;
- }
- return super.onInterceptTouchEvent(paramMotionEvent);
- }
- protected void onLayout(boolean paramBoolean, int paramInt1, int paramInt2,
- int paramInt3, int paramInt4) {
- super.onLayout(paramBoolean, paramInt1, paramInt2, paramInt3, paramInt4);
- if (this.mHeaderHeight == 0)
- this.mHeaderHeight = this.mHeaderContainer.getHeight();
- }
- @Override
- public void onScroll(AbsListView paramAbsListView, int paramInt1,
- int paramInt2, int paramInt3) {
- if (this.mScrollable) {
- Log.d(TAG, "onScroll");
- float f = this.mHeaderHeight - this.mHeaderContainer.getBottom();
- Log.d("onScroll", "f|" + f);
- if ((f > 0.0F) && (f < this.mHeaderHeight)) {
- Log.d("onScroll", "1");
- int i = (int) (0.65D * f);
- this.mHeaderImage.scrollTo(0, -i);
- } else if (this.mHeaderImage.getScrollY() != 0) {
- Log.d("onScroll", "2");
- this.mHeaderImage.scrollTo(0, 0);
- }
- }
- if (this.mOnScrollListener != null) {
- this.mOnScrollListener.onScroll(paramAbsListView, paramInt1,
- paramInt2, paramInt3);
- }
- }
- public void onScrollStateChanged(AbsListView paramAbsListView, int paramInt) {
- if (this.mOnScrollListener != null)
- this.mOnScrollListener.onScrollStateChanged(paramAbsListView,
- paramInt);
- }
- public boolean onTouchEvent(MotionEvent ev) {
- Log.d(TAG, "" + (0xFF & ev.getAction()));
- if (!this.mZoomable) {
- Log.i("zoom", "zoom");
- return super.onTouchEvent(ev);
- }
- switch (ev.getAction() & MotionEvent.ACTION_MASK) {
- case MotionEvent.ACTION_OUTSIDE:
- case MotionEvent.ACTION_DOWN:
- if (!this.mScalingRunnalable.mIsFinished) {
- this.mScalingRunnalable.abortAnimation();
- }
- this.mLastMotionY = ev.getY();
- this.mActivePointerId = ev.getPointerId(0);
- this.mMaxScale = (this.mScreenHeight / this.mHeaderHeight);
- this.mLastScale = (this.mHeaderContainer.getBottom() / this.mHeaderHeight);
- break;
- case MotionEvent.ACTION_MOVE:
- Log.d("onTouchEvent", "mActivePointerId" + mActivePointerId);
- int j = ev.findPointerIndex(this.mActivePointerId);
- if (j == -1) {
- Log.e("PullToZoomListView", "Invalid pointerId="
- + this.mActivePointerId + " in onTouchEvent");
- } else {
- if (this.mLastMotionY == -1.0F)
- this.mLastMotionY = ev.getY(j);
- if (this.mHeaderContainer.getBottom() >= this.mHeaderHeight) {
- ViewGroup.LayoutParams localLayoutParams = this.mHeaderContainer
- .getLayoutParams();
- float f = ((ev.getY(j) - this.mLastMotionY + this.mHeaderContainer
- .getBottom()) / this.mHeaderHeight - this.mLastScale)
- / 2.0F + this.mLastScale;
- if ((this.mLastScale <= 1.0D) && (f < this.mLastScale)) {
- localLayoutParams.height = this.mHeaderHeight;
- this.mHeaderContainer
- .setLayoutParams(localLayoutParams);
- }
- this.mLastScale = Math.min(Math.max(f, 1.0F),
- this.mMaxScale);
- localLayoutParams.height = ((int) (this.mHeaderHeight * this.mLastScale));
- if (localLayoutParams.height < this.mScreenHeight)
- this.mHeaderContainer
- .setLayoutParams(localLayoutParams);
- this.mLastMotionY = ev.getY(j);
- }
- this.mLastMotionY = ev.getY(j);
- }
- break;
- case MotionEvent.ACTION_UP:
- reset();
- endScraling();
- break;
- case MotionEvent.ACTION_CANCEL:
- break;
- case MotionEvent.ACTION_POINTER_DOWN:
- int i = ev.getActionIndex();
- this.mLastMotionY = ev.getY(i);
- this.mActivePointerId = ev.getPointerId(i);
- break;
- case MotionEvent.ACTION_POINTER_UP:
- onSecondaryPointerUp(ev);
- this.mLastMotionY = ev.getY(ev
- .findPointerIndex(this.mActivePointerId));
- break;
- }
- return super.onTouchEvent(ev);
- }
- public void setHeaderViewSize(int paramInt1, int paramInt2) {
- if (!this.mShowHeaderImage) {
- return;
- }
- Object localObject = this.mHeaderContainer.getLayoutParams();
- if (localObject == null)
- localObject = new AbsListView.LayoutParams(paramInt1, paramInt2);
- ((ViewGroup.LayoutParams) localObject).width = paramInt1;
- ((ViewGroup.LayoutParams) localObject).height = paramInt2;
- this.mHeaderContainer
- .setLayoutParams((ViewGroup.LayoutParams) localObject);
- this.mHeaderHeight = paramInt2;
- }
- public void setOnScrollListener(
- AbsListView.OnScrollListener paramOnScrollListener) {
- this.mOnScrollListener = paramOnScrollListener;
- }
- public void setScrollable(boolean paramBoolean) {
- if (!this.mShowHeaderImage) {
- return;
- }
- this.mScrollable = paramBoolean;
- }
- public void setShadow(int paramInt) {
- if (!this.mShowHeaderImage) {
- return;
- }
- this.mShadow.setBackgroundResource(paramInt);
- }
- public void setZoomable(boolean paramBoolean) {
- if (!this.mShowHeaderImage) {
- return;
- }
- this.mZoomable = paramBoolean;
- }
- class ScalingRunnalable implements Runnable {
- long mDuration;
- boolean mIsFinished = true;
- float mScale;
- long mStartTime;
- ScalingRunnalable() {
- }
- public void abortAnimation() {
- this.mIsFinished = true;
- }
- public boolean isFinished() {
- return this.mIsFinished;
- }
- public void run() {
- float f2;
- ViewGroup.LayoutParams localLayoutParams;
- if ((!this.mIsFinished) && (this.mScale > 1.0D)) {
- float f1 = ((float) SystemClock.currentThreadTimeMillis() - (float) this.mStartTime)
- / (float) this.mDuration;
- f2 = this.mScale - (this.mScale - 1.0F)
- * PullToZoomListView.sInterpolator.getInterpolation(f1);
- localLayoutParams = PullToZoomListView.this.mHeaderContainer
- .getLayoutParams();
- if (f2 > 1.0F) {
- Log.d("mmm", "f2>1.0");
- localLayoutParams.height = PullToZoomListView.this.mHeaderHeight;
- localLayoutParams.height = ((int) (f2 * PullToZoomListView.this.mHeaderHeight));
- PullToZoomListView.this.mHeaderContainer
- .setLayoutParams(localLayoutParams);
- PullToZoomListView.this.post(this);
- return;
- }
- this.mIsFinished = true;
- }
- }
- public void startAnimation(long paramLong) {
- this.mStartTime = SystemClock.currentThreadTimeMillis();
- this.mDuration = paramLong;
- this.mScale = ((float) (PullToZoomListView.this.mHeaderContainer
- .getBottom()) / PullToZoomListView.this.mHeaderHeight);
- this.mIsFinished = false;
- PullToZoomListView.this.post(this);
- }
- }
- }
关于这个控件的实现原理可以自行参考上面链接的文章,里面已经有较为细致的讲解,此处不再赘述。实现的效果就是下面这样:
Android PullToZoomListView实现放大回弹效果的更多相关文章
- Android -- 自定义ScrollView实现放大回弹效果
1,刚刚在别人开源的项目中看到了一个挺不错的用户体验,效果图如下: 2,那下面我们就来实现一下,首先看一下布局,由于一般只是我们包含头像的那部分方法,所以这里我们要把布局分成两部分,对应的布局文件效果 ...
- 顶部图片放大回弹效果Scrollview ---- 各应用中常见的自定义View 解析
原理并不难. 代码量也不大. 非常简洁 . 先来个效果图 再上一波代码. public class SpecialScrollView extends ScrollView implements ...
- Android仿IOS回弹效果 ScrollView回弹 总结
Android仿IOS回弹效果 ScrollView回弹 总结 应项目中的需求 须要仿IOS 下拉回弹的效果 , 我在网上搜了非常多 大多数都是拿scrollview 改吧改吧 试了一些 发现总 ...
- Android 图片的放大缩小拖拉
package com.example.ImageView; import android.annotation.SuppressLint; import android.content.Contex ...
- ScrollView的阻尼回弹效果实现(仿qq空间)
玩过新浪微博,qq空间等手机客户端的童鞋,都应该清楚,在主界面向下滑动时,会有一个阻尼回弹效果,看起来挺不错,接下来我们就来实现一下这种效果,下拉后回弹刷新界面,先看效果图: 这个是编辑器里面的界面效 ...
- ScrollView的顶部下拉和底部上拉回弹效果
要实现ScrollView的回弹效果,需要对其进行触摸事件处理.先来看一下简单的效果: 根据Android的View事件分发处理机制,下面对dispatchTouchEvent进行详细分析: 在加载布 ...
- Android RecyclerView 实现支付宝首页效果
Android RecyclerView 实现支付宝首页效果 [TOC] 虽然我本人不喜欢支付宝的,但是这个网格本身其实还是不错的,项目更新中更改了一个布局为网格模式,类似支付宝.(估计是产品抄袭的= ...
- 移动端页面 弹出框滚动,底部body锁定,不滚动 / 微信网页禁止回弹效果
需求:页面有弹出层菜单,当弹出层菜单超出屏幕可视区域时,不能滚动.加上滚动后,底部body的滚动事件如何禁止,加上了overflow:hidden;还是不可用. 如下图:地区弹出框可以滚动,而底部的b ...
- 在android中用跑马灯的效果显示textview
大家好,在我们通常的android project中,通常需要用到textview这一个布局文件,并且对于这一个显示布局所需要的文本文字内容. 下面我们就来介绍一种方法来实现在android中用跑马灯 ...
随机推荐
- 忘记BIOS超级管理员密码,怎么破解?
[请尊重原创版权,如需引用,请注明来源及地址] 本人就喜欢没事瞎折腾,动动手活动活动筋骨没坏处,前不久非常便宜的弄到一玩具 ThinkPad T400(公司处理品),外观还算不错,除了电源适配器是坏的 ...
- HDMI IP学习笔记
在HDMI的IP核中点击,生成例子.找到./simulaion/mentor文件夹,把modelsim路径转到该路径下,即可仿真.
- java中的 FileWriter类 和 FileReader类的一些基本用法
1,FileWriter类(字符输出流类) |--用来写入字符文件的便捷类.此类的构造方法假定默认字符编码和默认字节缓冲区大小都是可接受的.要自己指定这些值,可以先在 FileOutputStream ...
- zabbix微信告警实践
首先你得有个企业号!!!具体操作步骤可以参考http://itnihao.blog.51cto.com/1741976/1733245,里面写的很详细就不重复了. 微信公众号注册并配置完成后,还需要让 ...
- 做webapp静态页面的一些积累
1)根据pad,手机不同的版本的屏幕大小设置字体的大小(可以使用此方式根据屏幕的不同进行设置,由于我左边的图片是设置的float='left',使用的是img标签的百分比来显示图片) (使用此方式, ...
- instruments usage error specified target process is invalid
遇到这个问题的很多,但都没说具体的解决办法. 如果你的包名 路径之类的都正确,还是报这个错误的话,请重启手机.
- 网络-->监控-->单位换算
The metric system In some cases when used to describe data transfer rates bits/bytes are calculated ...
- 配置文件操作(ini、cfg、xml、config等格式)
配置文件的格式主要有ini.xml.config等,现在对这些格式的配置文件的操作(C#)进行简单说明. INI配置文件操作 调用系统函数GetPrivateProfileString()和Write ...
- jQuery将悬停效果加到菜单项
<!doctype html> <html> <head> <meta charset="utf-8"> <title> ...
- MySQL安装之后没有MySQL数据库的原因
mysql安装完之后,登陆后发现只有两个数据库:mysql> show databases;+--------------------+| Database |+------ ...