I have this button, with transparent background, composed of an image and a text:
<Button
android:id="@+id/settingsBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:drawableTop="@drawable/settings"
android:text="@string/settings" />
When I click it, I would like to have a feeling of the click, like a blinking of the image. I tried to do this with shapes, but their effect doesn't work on the image. Can you help me?