我有一个定义列表视图项目的布局。我需要如下:
我需要那个红色矩形(ImageView)覆盖两个LinearLayouts(见我上传的图片)。
我当前的列表项布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/background"
android:paddingLeft="15dip"
android:paddingRight="15dip" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/item_rounded"
android:padding="15dip" >
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Item 1"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>