我正在尝试将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" />