在 android eclipse 中调整图像按钮大小
adjust image button size in android eclipse
我需要调整图像按钮大小的帮助,当我想将宽度更改为 mach parent 时,我下载了一个蓝色按钮,蓝色图像按钮大小没有改变,它包含灰色按钮,蓝色按钮保持为默认灰色按钮上的大小相同。
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/btnbluee" />
设置 background
而不是 src
-
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/btnbluee" />
我需要调整图像按钮大小的帮助,当我想将宽度更改为 mach parent 时,我下载了一个蓝色按钮,蓝色图像按钮大小没有改变,它包含灰色按钮,蓝色按钮保持为默认灰色按钮上的大小相同。
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/btnbluee" />
设置 background
而不是 src
-
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/btnbluee" />