ボタンの背景用のセレクターファイルを提供してください。ボタンを押すと背景画像が変わります。ボタンの背景にカスタム画像を設定します。ドローアブル ファイルの内容は何 listbackground
ですか?
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="40dp"
android:text="Button 1"
android:background="@drawable/listbackground"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/button1"
android:layout_below="@+id/button1"
android:layout_marginTop="37dp"
android:text="Button 2"
android:background="@drawable/listbackground"/>
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/button2"
android:layout_centerVertical="true"
android:text="Button 3"
android:background="@drawable/listbackground"/>
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button3"
android:layout_below="@+id/button3"
android:layout_marginTop="48dp"
android:text="Button 4"
android:background="@drawable/listbackground"/>
</RelativeLayout>