关于ImageView添加帧动画的兼容问题

在魅族M030手机上,ImageView设置帧动画时遇到类型转换错误,因为imageView.getBackground()返回ColorDrawable而非AnimationDrawable。为了解决这个问题,需要在代码中添加特定判断以实现机型兼容。
摘要由CSDN通过智能技术生成

测试机:魅族M030

测试内容:ImageView设置帧动画

结果:将背景转换成AnimationDrawable时类型转换错误


动画布局文件anim_laoding.xml:

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/ic_loading01" android:duration="75" />
    <item android:drawable="@drawable/ic_loading02" android:duration="75" />
    <item android:drawable="@drawable/ic_loading03" android:duration="75" />
    <item android:drawable="@drawable/ic_loading04" android:duration="75" />
</animation-list>

ImageView imgView = new ImageView(context);
imgView.setBackgroundResource(R.drawable.anim_loading);
animation = (AnimationDrawable) imgView.getBackground();

最后一句直接报错,这个手机imageView.getBackground()返回的是一个ColorDrawable,导致类型转换错误,网上都是这么写的。

很无奈,最后我加了一个判断,来兼容这种机器:

ImageView imgView = new ImageView(context);
imgView.setBackgroundResource(R.drawable.anim_loading);
if(imgView.getBackground() instanceof AnimationDrawable) {
    animation = (AnimationDrawable) imgView.getBackground();
}
但同时也导致在这些机器上没有了动画效果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值