java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.android_demo1/com.example.android_demo1.AertDialogActivity}: java.lang.ClassCastException: android.graphics.drawable.VectorDrawable cannot be cast to android.graphics.drawable.AnimationDrawable
时间: 2023-05-22 11:05:30 浏览: 100
常用的RuntimeException.txt
这个错误通常是因为在布局文件或代码中将 VectorDrawable 对象试图转换成 AnimationDrawable 对象导致的,您可以检查代码和布局文件中的向量图形和动画对象,确保将它们正确使用。如果问题仍然存在,您可以尝试使用另一个可转换的 Drawable 类型,比如 BitmapDrawable。
阅读全文