1

ボタンの背景に 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 デバイスでアプリを実行すると、次のように表示されます。

ここに画像の説明を入力

任意のアイデア、なぜこの問題を解決するのですか?

ありがとうございました。

4

1 に答える 1

1

ここに画像の説明を入力

この画像を使用します。

<Button
        android:id="@+id/toggle_subscribed_forum"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/background_silver"
        android:text="Forum" />
于 2013-08-19T08:21:08.330 に答える