图像按钮的高度和宽度

时间:2013-04-30 07:46:37

标签: android android-layout imagebutton

我有一个有问题的安卓问题,但我无法解决它。

我有一个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="fill_parent"
android:background="@drawable/background"
>
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="vertical" >

      <!-- other content -->

     </LinearLayout>

     <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <ImageButton
            android:id="@+id/sabadell_but"
            android:background="@drawable/banner_sabadell"
            android:contentDescription="@string/infoDesc"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom" />
       </LinearLayout>

    </LinearLayout>

这是我应该看到的:

enter image description here

这就是我所看到的:

enter image description here

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

这是因为您将图像用作背景 你应该把它用作一个scource:

android:src="@drawable/banner_sabadell"

如果您对不同屏幕的尺寸有问题,您将需要使用scale_type属性

 android:scaleType="fitXY" /// or some others

最好从你的横幅制作9patch图像。 是的,舒尔......你必须做到这一点:

android:background="#00000000"

android:background="@android:color/transparent"

答案 1 :(得分:1)

尝试使用scaleType = "fitCentre"。在设置高度宽度wrap_content之前

This link还可以帮助您确定要使用的比例类型。