<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.example.app">
<item app:remainingUse="2" android:drawable="@drawable/blabla2" />
<item app:remainingUse="1" android:drawable="@drawable/blabla1" />
<item app:remainingUse="0" android:drawable="@drawable/blabla0" />
<item android:drawable="@drawable/blabla3" />
</selector>
是否可以在上面的自定义选择器中使用整数值作为控制状态?
(remainingUse 是 attrs.xml 中定义的自定义整数变量)