The error has to do with the format of your xml, you are setting something like
android:background="@drawable/item_bg_selector"
What the error is telling you is that it should be like this
android:drawable="@drawable/item_bg_selector"
The error has to do with the format of your xml, you are setting something like
android:background="@drawable/item_bg_selector"
What the error is telling you is that it should be like this
android:drawable="@drawable/item_bg_selector"