0

我正在尝试绘制一个以图像为背景的按钮。这是我的xml:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:background="@drawable/background"
android:orientation="vertical" >

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginTop="13dp"
    android:background="@drawable/button_bg"
    android:text="Break Record"
    android:textColor="#2c4417"
    android:textSize="19dp"
    android:textStyle="bold" >
</Button>

</LinearLayout>

在图形布局视图上,它看起来像我想要的那样:
在此处输入图像描述

但是在模拟器上,按钮占据了屏幕的整个宽度:
在此处输入图像描述

我已经多次阅读规范,但无法理解我的错误是,
如何编写按钮 xml,以便按钮在模拟器(和所有设备..)上看起来像在 Eclipse 的图形布局中一样?

谢谢。

4

1 回答 1

2

按钮的宽度是由于@drawable/button_bg. 如果背景图像对于不同的密度是恒定的,那么 hdpi 应该按钮尺寸较小,另一方面,mdpi 和 ldpi 设备将需要更多宽度来显示相同​​的按钮。确认您有不同的背景图像,并且它们与它们的密度有关。

PS 分别以 hdpi、mdpi 和 ldpi 密度运行三个不同的仿真器并观察布局。

于 2012-04-04T06:55:26.190 回答