AnimationDrawable监听播放结束及ImageSwitcher动画图片切换,带动画

简介: //java代码动态加载动画 或者res/anim/中加载

//java代码动态加载动画 或者res/anim/中加载

private void setRepaymentDate(NewProductInfoBean productInfo) {
    ArrayList<Integer> res = new ArrayList<>();
    res.add(R.mipmap.day_left_1);
    res.add(R.mipmap.day_left_2);
    res.add(R.mipmap.day_left_3);
    res.add(R.mipmap.day_left_4);
    res.add(R.mipmap.day_left_5);
    res.add(R.mipmap.day_left_6);
    res.add(R.mipmap.day_left_7);
    res.add(R.mipmap.day_left_8);
    res.add(R.mipmap.day_left_9);
    res.add(R.mipmap.day_left_10);
    res.add(R.mipmap.day_left_11);
    res.add(R.mipmap.day_left_12);
    res.add(R.mipmap.day_left_13);
    res.add(R.mipmap.day_left_14);
    res.add(R.mipmap.over_due);
    mllOverdueDay.setVisibility(View.GONE);
    ad = new AnimationDrawable();
    isOverdue = false;
    if (productInfo.getData().getOrderDetail().getStatus() == 17)//逾期
    {
        handler.removeMessages(100);
        mllOverdue.setVisibility(View.VISIBLE);
        for (int i = 0; i < res.size(); i++) {
            ad.addFrame(getResources().getDrawable(res.get(i)), 100);
        }
        ad.setOneShot(true);
        mimRepaymentProgress.setBackground(ad);
        ad.start();
        handler.sendEmptyMessageDelayed(100, 1500);
        isOverdue = true;
    } else {
        mtvRepaymentStatement.setText(R.string.home_prepayment);
        mllOverdue.setVisibility(View.GONE);
        for (int i = 0; i < 15 - productInfo.getData().getOrderDetail().getRepayDay(); i++) {
            ad.addFrame(getResources().getDrawable(res.get(i)), 100);
        }
        ad.setOneShot(true);
        mimRepaymentProgress.setBackground(ad);
        ad.start();
    }
}


Handler handler = new Handler(new Handler.Callback() {
    @Override
    public boolean handleMessage(Message msg) {
        switch (msg.what) {
            case 100:
                AnimationSet animationSet = new AnimationSet(true);
                ScaleAnimation scaleAnimation = new ScaleAnimation(0.5f, 1, 0.5f, 1,
                        Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
                scaleAnimation.setDuration(100);
                animationSet.addAnimation(scaleAnimation);
                //启动动画
                mllOverdueDay.startAnimation(animationSet);
                mllOverdueDay.setVisibility(View.VISIBLE);
                break;
        }
        return false;
    }
});


当启动其他Fragment,Activity并未对本界面进行销毁时AnimationDrawable会停止(回到第一张图片),


返回本界面是可以再次ad.start();//启动动画handler.sendEmptyMessageDelayed(100, 1400);//1400整个动画所需时间,(如有多次启动动画的代码需要handler.removeMessages(100);


<ImageSwitcher
    android:id="@+id/image_SwitcherTop"
    android:layout_width="match_parent"
    android:layout_height="250dp"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="80dp" />


imgIds = new int[]{R.mipmap.icon_splash_top_1, R.mipmap.icon_splash_top_2,
        R.mipmap.icon_splash_top_3};
imageSwitcherTop.setFactory(this);
imageSwitcherTop.setImageResource(imgIds[currentPosition % imgIds.length]);


extends BaseActivity implements ViewSwitcher.ViewFactory
@Override
public View makeView() {
    return new ImageView(this);
}


左右滑动事件监听(可以添加动画效果)


@Override
public boolean onTouchEvent(MotionEvent event) {
    //继承了Activity的onTouchEvent方法,直接监听点击事件
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        //当手指按下的时候
        downx = event.getX();
    }
    if (event.getAction() == MotionEvent.ACTION_UP) {
        //当手指离开的时候
        upx = event.getX();
        if(firstTime){
            if (downx > upx && currentPosition < imgIds.length - 1) {
                currentPosition++;
                imageSwitcherTop.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.right_in));
                imageSwitcherTop.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.lift_out));
                imageSwitcherTop.setImageResource(imgIds[currentPosition % imgIds.length]);
            } else if (upx > downx && currentPosition > 0) {
                currentPosition--;
                imageSwitcherTop.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.left_in));
                imageSwitcherTop.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.right_out));
                imageSwitcherTop.setImageResource(imgIds[currentPosition % imgIds.length]);
            }
            tvTrynow.setVisibility(currentPosition == (imgIds.length - 1) ? View.VISIBLE : View.GONE);
            setImageBackground(currentPosition);
        }
    }
    return super.onTouchEvent(event);
}
相关文章
|
2月前
ThreeJs手动控制动画播放与暂停
这篇文章介绍了如何在Three.js中手动控制动画的播放与暂停,包括设置动画混合器、监听按键事件以调整动画状态和速度的方法。
79 0
ThreeJs手动控制动画播放与暂停
|
JavaScript 前端开发
【jQuery动画】停止动画、淡入淡出、自定义动画
动画队列中所有动画都是按照顺序执行的,默认只有当前的一个动画执行完毕,才会执行后面的动画。为此,jQuery提供了stop()方法用于停止动画效果。通过此方法,可以让动画队列后面的动画提前执行。
An动画优化之遮罩层动画
An动画优化之遮罩层动画
283 0
|
Android开发 Kotlin 数据格式
ScrollView滑动—仿微博主页标题栏渐变悬浮及Fragment实现多个内容页面切换
作为一名热爱学习的Android开发工程si,刷微博的时候居然还想着技术呢,觉得自己也是够够了........哈哈哈 image.png 进入今天的正题,微博主页大家肯定是看过的,先看一下微博的效果。
2016 0
|
JavaScript 前端开发
Swiper移动端网站的内容触摸滑动
Swiper是纯javascript打造的滑动特效插件,面向手机、平板电脑等移动终端。 Swiper能实现触屏焦点图、触屏Tab切换、触屏多图切换等常用效果。 Swiper开源、免费、稳定、使用简单、功能强大,是架构移动终端网站的重要选择! Swiper中文网 http://www.
1331 0
unity3d-ngui UIScrollView 滚动方向与滚轮相反
生成一个滚动面板之后发现滚轮向上滚,界面向下;滚轮向下界面向上。在编辑窗口里发现这个选项 本来是-2,修改成正数就可以了。   http://ju.outofmemory.cn/entry/146754