我的视图层次结构中有相对布局,我想让它作为背景:
这是xml:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/background"
>
<RelativeLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
>
<TextView
<!-- -->
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:layout_centerVertical="true"
/>
<Spinner
<!-- -->
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:minWidth="200dp"
/>
</RelativeLayout>
<!-- Nested Relative layouts as above go here -->
</RelativeLayout>
这就是我收到的内容:
似乎9patch导致问题,因为我尝试了其他drawables,我的布局不像这样。你能指出我的错误吗?
答案 0 :(得分:3)
你的衬垫似乎不正确,右边和底部的黑色部分几乎应该是整个宽度/高度(圆角除外)。
我认为这是你等待的结果。