我有一个带有横幅的布局。我删除了所有其余的代码。
我将它创建为图像按钮。
布局有一个图像作为布局,例如在hdpi中,大小为:720x1200 px,图像按钮为720x200
这是图像按钮:
但是imagebutton没有固定宽度,但我没有发现错误!
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@drawable/background"
>
<ImageButton
android:id="@+id/sabadell_but"
android:background="@null"
android:contentDescription="@string/infoDesc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:src="@drawable/banner_sabadell" />
</LinearLayout>
如何让图像按钮固定宽度?