android 9-patch图像在布局设计上正常工作但在设备上不起作用

时间:2013-08-19 08:11:29

标签: android nine-patch

我使用9-patch图像作为按钮的背景,它正在进行布局设计(eclipse)但在设备上运行应用程序时无法正常工作,这里是9-patch图像:

button background

和布局:

<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>

在布局设计(eclipse)中它看起来像这样:

enter image description here

但是,当在Android设备上执行应用程序时,它看起来像这样:

enter image description here

任何想法,为什么如何解决这个问题?

谢谢。

1 个答案:

答案 0 :(得分:1)

enter image description here

使用此图片。

<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" />