我正在尝试绘制一个以图像为背景的按钮。这是我的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 的图形布局中一样?
谢谢。