最近在运行API 16的设备上收到了崩溃报告:
org.xmlpull.v1.XmlPullParserException: Binary XML file line #1: invalid drawable tag vector
据我所知,它源于VectorDrawable API 16中缺少的支持。
老实说,我不知道我有这样的drawables,根据git log
看起来它们是自动生成的,因为我启用了矢量库。
我想定义一个复选框背景,我应该离开VectorDrawable吗?如果是这样,我应该如何支持较低的API?
如果我删除它们,它们会不会再次自动生成?
这是复选框声明:
<CheckBox
android:id="@+id/reminder_enabled_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_gravity="center"
android:layout_marginLeft="15dp"
android:layout_marginStart="15dp"
android:padding="10dp"
android:button="@drawable/notification_icon_checkbox" />
以下是选择器:(notification_icon_checkbox
):
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="false" android:drawable="@drawable/ic_notifications_none_black_24dp" />
<item android:state_checked="true" android:drawable="@drawable/ic_notifications_black_24dp" />
<item android:drawable="@drawable/ic_notifications_none_black_24dp" /> <!-- default state -->
</selector>
drawable ic_notifications_none_black_24dp
是.png
文件和VectorDrawable
xml文件:
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M11.5,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zm6.5,-6v-5.5c0,-3.07 -2.13,-5.64 -5,-6.32V3.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S10,2.67 10,3.5v0.68c-2.87,0.68 -5,3.25 -5,6.32V16l-2,2v1h17v-1l-2,-2z" />
</vector>
答案 0 :(得分:2)
将此添加到您的模块级build.gradle
vectorDrawables.useSupportLibrary = true
将此添加到“活动/片段”中
static {
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
}
从XML删除可绘制的矢量
<CheckBox
android:id="@+id/reminder_enabled_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_gravity="center"
android:layout_marginLeft="15dp"
android:layout_marginStart="15dp"
android:padding="10dp"
/>
像这样通过编程方式设置CheckBox自定义可绘制对象
CheckBox cb = findViewById(R.id.reminder_enabled_checkbox);
cb.setButtonDrawable(AppCompatResources.getDrawable(getContext(), R.drawable.notification_icon_checkbox));