我想创建一个带有圆角和填充颜色背景的布局。
这是我的布局:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="210dp"
android:orientation="vertical"
android:layout_marginBottom="10dp"
android:background="@drawable/offerItemLayout">
<LinearLayout
android:id="@+id/offerImageHolder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
.
.
.
</LinearLayout>
</LinearLayout>
我有以下可offerItemLayout
正确创建边框的可绘制 xml ( ):
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:radius="5dp"/>
<stroke
android:width="1dp"
android:color="@color/bggrey" />
</shape>
</item>
// The lines below causes an inflation failure.
<item>
<fill
android:color="@color/white"/>
</item>
</layer-list>
但是插入带有填充的项目会导致布局的膨胀失败。
此外,如果我为我的内部 LinearLayout ( offerImageHolder
) 分配一个颜色背景,它会用我的圆角覆盖第一个背景。
关于正确执行此操作的任何想法?:/