我意识到这已经被问过多次了,但是我的图像在按下时正在改变大小(这应该是相同的大小,但不同的图像)。我以前曾尝试在java中设置按钮的大小,但它也不起作用。这是我的代码。
XML选择<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/testbuttonpressed" /> <!-- pressed -->
<item android:drawable="@drawable/testbutton" /> <!-- default -->
</selector>
XML <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/backtest1">
<Button
android:id="@+id/start_button"
android:layout_width="225px"
android:layout_height="55px"
android:layout_marginTop="10dp"
android:layout_gravity="center"
android:text="@string/start"
android:background="@drawable/buttonsxml"
/>
</LinearLayout>
原来我的照片差了一个像素…