<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <!-- ボタンが押されたときの定義 --> <item android:state_pressed="true"> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="@color/service_pressed_button_color" /> <corners android:radius="5dp" /> </shape> </item> <!-- ボタンが押されていないときの定義 --> <item android:state_pressed="false"> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="@color/service_button_color" /> <corners android:radius="5dp" /> </shape> </item> </selector>