Android Checkbox按钮为Vector API 19

时间:2018-12-08 20:55:06

标签: android vector android-support-library android-drawable android-checkbox

我正在尝试将Checkbox中的2个矢量可绘制对象用作按钮,但是它给了我org.xmlpull.v1.XmlPullParserException: Binary XML file line #1: invalid drawable tag vector API19。据我了解,API <21中不直接支持矢量可绘制对象,但是其他视图具有app:srcCompat之类的支持选项,CheckBox是否有类似的东西?还是将我的选择器更改为.png或仅使用2个ImageView的唯一选择?

<android.support.v7.widget.AppCompatCheckBox
        android:id="@+id/checkbox_ID"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:elevation="6dp"
        android:layout_marginBottom="8dp"
        android:button="@drawable/checkbox_state"
        android:checked="false"
        app:layout_constraintBottom_toTopOf="@+id/recyclerView_ID"
        app:layout_constraintEnd_toEndOf="@+id/Room_topView_ID" />

0 个答案:

没有答案