图像按下按钮改变大小

时间:2011-10-28 19:25:09

标签: android button selector pressed

我意识到这已被多次询问,但我的图像在按下时会改变大小(应该是相同大小,但是图像不同)。我以前曾尝试在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>

1 个答案:

答案 0 :(得分:1)

事实证明我的照片是关闭的像素......