You will need the separate images for pressed and normal states.
For example
pressed_state image => pressed_dice_img.jpg
normal_state image => normal_dice_img.jpg
then you will have to make a selector file say dice_image_view_selector.xml in res/drawable folder like this
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true" android:drawable="@drawable/pressed_dice_image" />
<item android:state_pressed="true" android:drawable="@drawable/pressed_dice_image" />
<item android:drawable="drawable/normal_dice_image" />
</selector>
then apply to your each image view like this
android:background="dice_image_view_selector.xml"