ドローアブルで背景に画像を設定したボタンを作成しました。プログラムを実行すると、画像が中央に配置されず、ボタンに合わせて縮小されません。しかし、それをクリックすると、押された画像が正しく表示されます。これは先日機能していましたが、何が起こったのかわかりません。
main.xml
<Button
android:id="@+id/rightarrow"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="@android:color/transparent"
android:clickable="false" />
Activity.java
rightarrow = (Button) findViewById(R.id.rightarrow);
rightarrow.setBackgroundResource(R.drawable.rightarrow_drawable);
rightarrow_drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/rightarrow_pressed" android:state_pressed="true"/>
<item android:drawable="@drawable/rightarrow" />
</selector>