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中用跑马灯 ...
随机推荐
- 破解excel密码保护
破解excel密码保护 录制一个新宏.内容如下.保存后运行,点几次确定,过一分钟还会再弹出来,再点确定,然后就好了. Public Sub AllInternalPasswords() ' Break ...
- thinkphp model模块
1.获取系统常量信息的方法:在控制器DengLuController里面下写入下面的方法,然后调用该方法. public function test() { //echo "这是测试的&qu ...
- Android Studio 出现Failed to open zip file的问题
修改gradle . 首先我们打开setting搜索gradle.我们可以从该界面上看到gradle的版本.
- Spring实现文件上传
(别人的见解) 在使用springMVC进行系统实现时,springMVC默认的解析器里面是没有加入对文件上传的解析的,这可以方便我们实现自己的文件上传.但如果你想使用springMVC对文件上传的解 ...
- C# Winform学习---MDI窗体的设计,PictureBox控件(图片上一页下一页),Timer控件,MenuStrip控件
一.MDI窗体的设计 1.MDI简介 MDI(Multiple Document Interface)就是所谓的多文档界面,与此对应就有单文档界面 (SDI), 它是微软公司从Windows 2.0下 ...
- Java(数组)动手动脑
1>数组作为方法参数 阅读并运行示例PassArray.java,观察并分析程序输出的结果,小结,然后与下页幻灯片所讲的内容进行对照. 源代码: // PassArray.java // Pas ...
- treap树模板
///treap树模板 typedef struct Node ///节点的结构体 { Node *l,*r; int val,pri; ///节点的值和优先级 int sz; ///节点子树的节点数 ...
- DBlink与同义词
DBLink就是数据库链接,而同义词就已经具体到某个用户下的表了 原文链接:http://www.linuxidc.com/Linux/2013-01/77579.htm 这里所需要的信息: 从MM库 ...
- JAVA面向对象初步知识总结:封装、继承、多态
1.封装 把数据和方法包装进类中,以及具体实现的隐藏,常共同被称作是是封装.其结果是一个同时带有特征和行为的数据类型.所谓具体实现的隐藏是通过访问权限控制实现的.JAVA 子类重写继承的方法时,不可以 ...
- transform-style: preserve-3d在iphone下的bug
经测,当元素设置transform-style: preserve-3d;后,其实现rotateY时的动画效果会穿透上层的覆盖图层. 马克一下