我正在使用支持库 23.2中添加的支持向量可绘制对象以及 AppCompat。app:srcCompat
我在 a 和 a 内都使用了矢量可绘制对象,StateListDrawable
因此我可以将它们与android:drawableLeft
我的 TextView 一起使用。
自从升级到 AppCompat 的 23.3.0 版本后,只有其中的向量在app:srcCompat
工作。每当我以另一种方式引用它时
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.my.package.name/.MainActivity}: android.view.InflateException: Binary XML file line #8: Error inflating class Button
...
Caused by: android.view.InflateException: Binary XML file line #8: Error inflating class Button
...
Caused by: org.xmlpull.v1.XmlPullParserException: Binary XML file line #14: invalid drawable tag vector
at android.graphics.d
现在是什么改变导致我的支持向量绘图在某些情况下失败?