基本信息
源码名称:android 下拉窗帘效果
源码大小:2.23M
文件格式:.zip
开发语言:Java
更新时间:2015-11-17
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
public class CurtainView extends RelativeLayout implements OnTouchListener{ private static String TAG = "CurtainView"; private Context mContext; /** Scroller 拖动类 */ private Scroller mScroller; /** 屏幕高度 */ private int mScreenHeigh = 0; /** 屏幕宽度 */ private int mScreenWidth = 0; /** 点击时候Y的坐标*/ private int downY = 0; /** 拖动时候Y的坐标*/ private int moveY = 0; /** 拖动时候Y的方向距离*/ private int scrollY = 0; /** 松开时候Y的坐标*/ private int upY = 0; /** 广告幕布的高度*/ private int curtainHeigh = 0; /** 是否 打开*/ private boolean isOpen = false; /** 是否在动画 */ private boolean isMove = false; /** 绳子的图片*/ private ImageView img_curtain_rope; /** 广告的图片*/ private ImageView img_curtain_ad; /** 上升动画时间 */ private int upDuration = 1000; /** 下落动画时间 */ private int downDuration = 500; public CurtainView(Context context) { super(context); init(context); } public CurtainView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(context); } public CurtainView(Context context, AttributeSet attrs) { super(context, attrs); init(context); } /** 初始化 */ private void init(Context context) { this.mContext = context; //Interpolator 设置为有反弹效果的 (Bounce:反弹) Interpolator interpolator = new BounceInterpolator(); mScroller = new Scroller(context, interpolator); mScreenHeigh = BaseTools.getWindowHeigh(context); mScreenWidth = BaseTools.getWindowWidth(context); // 背景设置成透明 this.setBackgroundColor(Color.argb(0, 0, 0, 0)); final View view = LayoutInflater.from(mContext).inflate(R.layout.curtain, null); img_curtain_ad = (ImageView)view.findViewById(R.id.img_curtain_ad); img_curtain_rope = (ImageView)view.findViewById(R.id.img_curtain_rope); addView(view); img_curtain_ad.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub curtainHeigh = img_curtain_ad.getHeight(); Log.d(TAG, "curtainHeigh= " curtainHeigh); CurtainView.this.scrollTo(0, curtainHeigh); //注意scrollBy和scrollTo的区别 } }); img_curtain_rope.setOnTouchListener(this); } /** * 拖动动画 * @param startY * @param dy 垂直距离, 滚动的y距离 * @param duration 时间 */ public void startMoveAnim(int startY, int dy, int duration) { isMove = true; mScroller.startScroll(0, startY, 0, dy, duration); invalidate();//通知UI线程的更新 } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { // TODO Auto-generated method stub super.onLayout(changed, l, t, r, b); } @Override public void computeScroll() { //判断是否还在滚动,还在滚动为true if (mScroller.computeScrollOffset()) { scrollTo(mScroller.getCurrX(), mScroller.getCurrY()); //更新界面 postInvalidate(); isMove = true; } else { isMove = false; } super.computeScroll(); } @Override public boolean onTouch(View v, MotionEvent event) { // TODO Auto-generated method stub if (!isMove) { int offViewY = 0;//屏幕顶部和该布局顶部的距离 switch (event.getAction()) { case MotionEvent.ACTION_DOWN: downY = (int) event.getRawY(); offViewY = downY - (int)event.getX(); return true; case MotionEvent.ACTION_MOVE: moveY = (int) event.getRawY(); scrollY = moveY - downY; if (scrollY < 0) { // 向上滑动 if(isOpen){ if(Math.abs(scrollY) <= img_curtain_ad.getBottom() - offViewY){ scrollTo(0, -scrollY); } } } else { // 向下滑动 if(!isOpen){ if (scrollY <= curtainHeigh) { scrollTo(0, curtainHeigh - scrollY); } } } break; case MotionEvent.ACTION_UP: upY = (int) event.getRawY(); if(Math.abs(upY - downY) < 10){ onRopeClick(); break; } if (downY > upY) { // 向上滑动 if(isOpen){ if (Math.abs(scrollY) > curtainHeigh / 2) { // 向上滑动超过半个屏幕高的时候 开启向上消失动画 startMoveAnim(this.getScrollY(), (curtainHeigh - this.getScrollY()), upDuration); isOpen = false; } else { startMoveAnim(this.getScrollY(), -this.getScrollY(),upDuration); isOpen = true; } } } else { // 向下滑动 if (scrollY > curtainHeigh / 2) { // 向上滑动超过半个屏幕高的时候 开启向上消失动画 startMoveAnim(this.getScrollY(), -this.getScrollY(),upDuration); isOpen = true; } else { startMoveAnim(this.getScrollY(),(curtainHeigh - this.getScrollY()), upDuration); isOpen = false; } } break; default: break; } } return false; } /** * 点击绳索开关,会展开关闭 * 在onToch中使用这个中的方法来当点击事件,避免了点击时候响应onTouch的衔接不完美的影响 */ public void onRopeClick(){ if(isOpen){ CurtainView.this.startMoveAnim(0, curtainHeigh, upDuration); }else{ CurtainView.this.startMoveAnim(curtainHeigh,-curtainHeigh, downDuration); } isOpen = !isOpen; } }