画像を背景としてボタンを描画しようとしています。ここに私の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>
グラフィカル レイアウト ビューでは、意図したとおりに表示されます。
ただし、エミュレーターでは、ボタンは画面の幅全体を占めます。
仕様を何度も読みましたが、私の間違いが何であるかを理解できませんでし
た.Eclipseのグラフィカルレイアウトのようにボタンがエミュレーター(およびすべてのデバイス..)で見えるようにするには、ボタンxmlをどのように記述すればよいですか?
ありがとう。