android2.3使用AnimationUtils.loadAnimation()加载动画出现异常

问题描述:

    用 AnimationUtils.loadAnimation()方法加载动画,在android5.0上正常,在android2.3上异常闪退。
    动画xml文件:
     <?xml version="1.0" encoding="utf-8"?>
    <set xmlns:android=" http://schemas.android.com/apk/res/android">
        <scale
            android:duration="100"
            android:interpolator="@android:interpolator/accelerate_quad"
            android:fillAfter="true"
            android:fillBefore="true"
            android:fromXScale="100%"
            android:fromYScale="100%"
            android:pivotX="0"
            android:pivotY="0"
            android:toXScale="100%"
            android:toYScale="0%" />
    </set>

问题原因:

    (1).在xml中配置插补器最低api要求是11,项目中配置的是8
    
    (2).弃用xml中配置的插补器后仍报错,异常如下,最后发现是android低版本不支持 fromXScale、 fromYScale 等参数值为100%、0%的转换
    

解决方案:

(1).弃用xml中的插补器配置
(2).fromXScale、fromYScale的值改为Float类型

最后修改后的动画xml文件如下,在android2.3上正常加载:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android=" http://schemas.android.com/apk/res/android" >

    <scale
        android:duration="100"
        android:fillAfter="true"
        android:fillBefore="true"
        android:fromXScale="1.0"
        android:fromYScale="1.0"
        android:pivotX="0"
        android:pivotY="0"
        android:toXScale="1.0"
        android:toYScale="0.0" />
</set>
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
使用ViewFlipper的手势功能完成的图像之间的切换、 package com.action; import android.app.Activity; import android.os.Bundle; import android.view.GestureDetector; import android.view.MotionEvent; import android.view.View; import android.view.GestureDetector.OnGestureListener; import android.view.View.OnTouchListener; import android.view.animation.AlphaAnimation; import android.view.animation.AnimationUtils; import android.widget.ImageView; import android.widget.ViewFlipper; public class MainFlingDemoActivity extends Activity implements OnGestureListener { /** Called when the activity is first created. */ private ViewFlipper vf; private GestureDetector detector; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); ImageView iv1=new ImageView(this); ImageView iv2=new ImageView(this); ImageView iv3=new ImageView(this); iv1.setImageResource(R.drawable.a1); iv2.setImageResource(R.drawable.a2); iv3.setImageResource(R.drawable.a3); detector = new GestureDetector(this); vf=(ViewFlipper) findViewById(R.id.viewFlipper1); AlphaAnimation an=new AlphaAnimation(0.1f,1.0f); an.setDuration(1000); vf.setAnimation(an); vf.addView(iv1, 0); vf.setAnimation(an); vf.addView(iv2, 1); vf.setAnimation(an); vf.addView(iv3, 2); vf.setAnimation(an); if(detector.isLongpressEnabled()){ vf.setFlipInterval(5000); vf.startFlipping(); } } @Override public boolean onTouchEvent(MotionEvent event) { // TODO Auto-generated method stub return this.detector.onTouchEvent(event); } @Override public boolean onDown(MotionEvent e) { // TODO Auto-generated method stub return false; } @Override public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { // TODO Auto-generated method stub System.out.println("==============="); //vf.stopFlipping(); if (e1.getX() - e2.getX() > 120) { this.vf.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in)); this.vf.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out)); this.vf.showNext(); return true; } else if (e1.getX() - e2.getX() < -120) { this.vf.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in)); this.vf.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out)); this.vf.showPrevious(); return true; } if (e1.getY() - e2.getY() > 120) { this.vf.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in)); this.vf.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out)); this.vf.showNext(); return true; } else if (e1.getY() - e2.getY() < -120) { this.vf.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in)); this.vf.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out)); this.vf.showPrevious(); return true; } return false; } @Override public void onLongPress(MotionEvent e) { // TODO Auto-generated method stub //vf.startFlipping(); } @Override public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { // TODO Auto-generated method stub return false; } @Override public void onShowPress(MotionEvent e) { // TODO Auto-generated method stub } @Override public boolean onSingleTapUp(MotionEvent e) { // TODO Auto-generated method stub return false; } }

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值