| 12345678910111213141516171819202122232425262728 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/parentRel"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/qingcolor" >
- <include
- android:id="@+id/printTitle"
- layout="@layout/fragment_title" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/printTitle"
- android:orientation="vertical" >
- <ListView
- android:id="@+id/productInfoLst"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:cacheColorHint="#00000000"
- android:layout_marginBottom="15dip"
- android:divider="@null"
- android:listSelector="#00000000" />
- </LinearLayout>
- </RelativeLayout>
|