ボタンの背景に 9 パッチ イメージを使用します。レイアウト デザイン (Eclipse) で動作していますが、アプリケーションがデバイス上で実行されている場合は動作しません。ここでは 9 パッチ イメージ:
そしてレイアウト:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:orientation="horizontal"
android:padding="0dp" >
<Button
android:id="@+id/toggle_subscribed_thread"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/background_silver"
android:focusable="true"
android:padding="0dip"
android:text="Thread" >
<requestFocus />
</Button>
<Button
android:id="@+id/toggle_subscribed_forum"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="0dip"
android:background="@drawable/background_silver"
android:text="Forum" />
<Button
android:id="@+id/toggle_subscribed_classified"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="0dip"
android:background="@drawable/background_silver"
android:text="Classified" />
</LinearLayout>
レイアウト設計(日食)では、次のように表示されます。
ただし、Android デバイスでアプリを実行すると、次のように表示されます。
任意のアイデア、なぜこの問題を解決するのですか?
ありがとうございました。