Why is this button changing color to orange when clicked:
<Button android:background="@android:drawable/btn_plus" ...>
but this one is not?
<Button android:background="@drawable/ic_btn_round_plus" ...>
Edit:
Found another type of button (text and image) that changes color to orange when clicked
without having to create a selector:
<Button android:text="List" android:drawableTop="@drawable/list" ...>