自定义View之图片随手势方向动态加载

自定义View之图片随手势方向动态加载

直接看实现出来的效果吧~

![slipView动画]](http://upload-images.jianshu.io/upload_images/2099469-dd8526fae911645a.gif?imageMogr2/auto-orient/strip)

图片和图片的标题会根据手势的不同以不同的方式动态加载,标题伴随透明变化,图片则有一定的阴影效果。

第一次看到这个效果是在JeasonWong的个人博客里面,但是具体的地址不记得了~

我在看了原作者的效果之后感觉很不错,于是就自己做了一些手势上的扩展,图片的加载使用Glide库

分析

  • 图片的滑动效果和文字的滑动效果基本一致,但是为了日后使用方便,把图片和文字的实现代码分离,但是可以使用模板模式简化重复的部分。
  • 图片和文字的动态切换效果,使用ViewGroup中放置两个TextView和ImageView来动态的隐藏和显示实现,另外图片在切换的时候会有第三个ImageView作为遮罩层

撸代码

0x01

首先是两个辅助类,SlipTo枚举滑动的方向,BaseEntey方便信息的传递。分别对应图片链接和图片标题

/**
* 滑动方向
*/
public enum SlipTo {
UP,
DOWN,
LEFT,
RIGHT
}

public class BaseEntry {
    public String pathurl;
    public String title;
    ‘’‘省略’‘’
}

0x02

SlipBase类作为SlipImage和SlipText的父类,使用监听属性动画的更新状态间接更新ViewGroup中对应子View的状态。实现动态的效果

doAnimFinish()和 doAnim()方法则是留给子类分别实现自己的逻辑

  /**
 * 滑动的方法
 */
public void slip(){
    if (isSlip){
        return;
    }
    isSlip = true;
    ValueAnimator valueAnimator = null;
    switch (slipTo){
        case DOWN:
        case UP:
            valueAnimator =  ValueAnimator.ofFloat(-mHeight,0)
                    .setDuration(mDuration);
            valueAnimator.setInterpolator(new AccelerateDecelerateInterpolator());
            valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
                @Override
                public void onAnimationUpdate(ValueAnimator valueAnimator) {
                    float margintop = (float)valueAnimator.getAnimatedValue();
                    mMarginTopHeight = (int)margintop;
                    if(margintop == 0){
                        postDelayed(new Runnable() {
                            @Override
                            public void run() {
                                mMarginTopHeight = - mHeight;
                                mRepeatCount++;
                                //动画执行完毕  更新状态
                                doAnimFinish();
                                isSlip = false;
                            }
                        },50);
                    }else{
                        //动画执行中 不断更新状态
                        doAnim();
                    }
                }
            });
         break;

        case LEFT:
        case RIGHT:
            valueAnimator =  ValueAnimator.ofFloat(-mWidth,0)
                    .setDuration(mDuration);
            valueAnimator.setInterpolator(new AccelerateDecelerateInterpolator());
            valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
                @Override
                public void onAnimationUpdate(ValueAnimator valueAnimator) {
                    float margintop = (float)valueAnimator.getAnimatedValue();
                    mMarginTopHeight = (int)margintop;
                    if(margintop == 0){
                        postDelayed(new Runnable() {
                            @Override
                            public void run() {
                                mMarginTopHeight = - mWidth;
                                mRepeatCount++;
                                doAnimFinish();
                                isSlip = false;
                            }
                        },50);
                    }else{
                        doAnim();
                    }
                }
            });
        break;
    }
    valueAnimator.start();
}

0x03

SlipImage就是实现图片滑动的逻辑的主要类,SlipText和她基本一样这里就主要介绍下这个类好了

initView添加三个ImageView到ViewGroup里面,两个负责装载图片,一个是遮罩层

doAnim()方法中设置遮罩层的透明度,并且调用requestLayout不断刷新界面

doAnimFinish()里面则加载图片并且移除遮罩层

其实主要的图片显示逻辑在onLayout方法里面,根据不同的状态设置不同的位置参数,从而实现视图的显示和隐藏。

@Override
protected void initView() {
    if(list.size()==0) return;
    removeAllViews();
    MarginLayoutParams marginLayoutParams = new MarginLayoutParams(mWidth,mHeight);

    for(int i=0; i<imageViews.length; i++){
        imageViews[i] = new ImageView(getContext());
        //加载图片
        Glide.with(getContext()).load(getCurrentPath(i)).dontTransform().dontAnimate().centerCrop().into(imageViews[i]);
        addView(imageViews[i],-1,marginLayoutParams);
    }
    ImageView imageView = new ImageView(getContext());
    imageView.setBackgroundColor(Color.parseColor("#90000000"));
    imageView.setAlpha(0f);
    addView(imageView,-1,marginLayoutParams);
}

@Override
protected void doAnimFinish() {
    //根据循环的次数加载图片 实现循环加载
    if(isEvenRepeat()){
        Glide.with(getContext()).load(getCurrentPath(mRepeatCount+1)).dontTransform().centerCrop().dontAnimate().into(imageViews[1]);
    }else{
        Glide.with(getContext()).load(getCurrentPath(mRepeatCount+1)).dontTransform().centerCrop().dontAnimate().into(imageViews[0]);
    }
    //去除阴影
    getChildAt(2).setAlpha(0f);
}

@Override
protected void doAnim() {
    switch (slipTo){
        case DOWN:
        case UP:
            getChildAt(2).setAlpha(1-(-mMarginTopHeight/(float)mHeight));
            break;
        case LEFT:
        case RIGHT:
            getChildAt(2).setAlpha(1-(-mMarginTopHeight/(float)mWidth));
            break;
    }
    //请求重绘
    requestLayout();
}

@Override
protected void onLayout(boolean changeed, int l, int t, int r, int b) {
    if(getChildCount()<3) return;
    MarginLayoutParams marginLayoutParams;
    switch (slipTo){
        case DOWN:
            for (int i=0;i<getChildCount(); i++){
                View childView = getChildAt(i);
                marginLayoutParams = (MarginLayoutParams) childView.getLayoutParams();
                int cl= marginLayoutParams.leftMargin, ct = 0, cr = cl + mWidth, cb;
                if(isEvenRepeat()){
                    if(i==0) {
                        ct = mMarginTopHeight + mHeight;
                    }else if(i==1){
                        ct = mMarginTopHeight;
                    }
                }else{
                    if(i==0){
                        ct = mMarginTopHeight;
                    }else if(i==1){
                        ct = mMarginTopHeight + mHeight;
                    }
                }
                if(i==2){
                    ct = mMarginTopHeight + mHeight;
                }
                cb = ct + mHeight;
                childView.layout(cl,ct,cr,cb);
            }
            break;

        case UP:
            for (int i=0;i<getChildCount(); i++){
                View childView = getChildAt(i);
                marginLayoutParams = (MarginLayoutParams) childView.getLayoutParams();
                int cl= marginLayoutParams.leftMargin, ct = 0, cr = cl + mWidth, cb;
                if(isEvenRepeat()){
                    if(i==0) {
                        ct = -mHeight-mMarginTopHeight;
                    }else if(i==1){
                        ct = -mMarginTopHeight;
                    }
                }else{
                    if(i==0){
                        ct = -mMarginTopHeight;
                    }else if(i==1){
                        ct = -mMarginTopHeight - mHeight;
                    }
                }
                if(i==2){
                    ct = -mMarginTopHeight - mHeight;
                }
                cb = ct + mHeight;
                childView.layout(cl,ct,cr,cb);
            }
            break;
        case RIGHT:
            for (int i=0;i<getChildCount(); i++){
                View childView = getChildAt(i);
                marginLayoutParams = (MarginLayoutParams) childView.getLayoutParams();
                int cl= 0, ct = marginLayoutParams.topMargin, cr , cb = ct + mHeight;
                if(isEvenRepeat()){
                    if(i==0) {
                        cl = mMarginTopHeight+mWidth;
                    }else if(i==1){
                        cl = mMarginTopHeight;
                    }
                }else{
                    if(i==0){
                        cl = mMarginTopHeight;
                    }else if(i==1){
                        cl =mMarginTopHeight+mWidth;
                    }
                }
                if(i==2){
                    cl = mMarginTopHeight+mWidth;
                }
                cr = cl + mWidth;
                childView.layout(cl,ct,cr,cb);
            }
            break;
        case LEFT:
            for (int i=0;i<getChildCount(); i++){
                View childView = getChildAt(i);
                marginLayoutParams = (MarginLayoutParams) childView.getLayoutParams();
                int cl= 0, ct = marginLayoutParams.topMargin, cr , cb = ct + mHeight;
                if(isEvenRepeat()){
                    if(i==0) {
                        cl = -mMarginTopHeight-mWidth;
                    }else if(i==1){
                        cl = -mMarginTopHeight;
                    }
                }else{
                    if(i==0){
                        cl =  -mMarginTopHeight;
                    }else if(i==1){
                        cl = -mMarginTopHeight-mWidth;
                    }
                }
                if(i==2){
                    cl = -mMarginTopHeight-mWidth;
                }
                cr = cl + mWidth;
                childView.layout(cl,ct,cr,cb);
            }
            break;


    }

}

0x04

在SlipView中将 SlipImage和SlipText组合,统一调度并添加手势控制

SlipView还有公开方法:setData用于设置数据,slipTo用于使用者自行控制图片动态加载方向

 /**
 * 通过滑动事件  控制图片加载方向
 * @param event
 * @return
 */
@Override
public boolean onTouchEvent(MotionEvent event) {
    super.onTouchEvent(event);
    switch (event.getAction()){
        case MotionEvent.ACTION_DOWN:
            downY = (int) event.getRawY();
            downX = (int) event.getRawX();
            return true;
        case MotionEvent.ACTION_MOVE:
            break;
        case MotionEvent.ACTION_UP:
            upY = (int) event.getRawY();
            upX = (int) event.getRawX();
            if(Math.abs(downY-upY)>y_limit){
                if((downY - upY) >0)
                    slipTo(SlipTo.UP);
                else
                    slipTo(SlipTo.DOWN);
            }
            if(Math.abs(downX-upX)>x_limit){
                if((downX-upX) >0)
                    slipTo(SlipTo.LEFT);
                else
                    slipTo(SlipTo.RIGHT);
            }
            break;
    }
    return false;
}

0x05

使用

        //设置数据
    slipViewImage.setData(data);

    //自行控制图片加载方向
    findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            slipViewImage.slipTo(SlipTo.DOWN);
        }
    });

下载查看全部代码github地址

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容