为什么RelativeLayout中的九个补丁图像会隐藏所有内部元素?

时间:2011-08-18 09:42:51

标签: android relativelayout nine-patch

当我将9.PNG图像设置为RelativeLayout的背景时,其中的所有元素都会缩小到中间。这是XML和快照。

<RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/bg"
        >
    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Just a simple white text which does not show up"
            android:textColor="#ffffff"
            />
</RelativeLayout>

nine-patch background

如果我将背景更改为颜色或普通图像,我会得到文本。

android:background="@drawable/bg2" //normal image

normal-image background

任何人都可以解释为什么会这样吗?

1 个答案:

答案 0 :(得分:6)

您是否定义了九补丁的内容区域?因为看起来内容区域是中间的小像素。

内容区域由九个补丁的底部和右侧定义。例如,您可以将其与补丁一样大。