| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:background="@color/background" >
- <include
- android:id="@+id/check_title"
- layout="@layout/fragment_title" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="420dp"
- android:orientation="vertical"
- >
- <ListView
- android:id="@+id/listvwcollect"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="5dp"
- android:layout_marginLeft="8dp"
- android:layout_marginRight="8dp"
- android:cacheColorHint="#00000000"
- android:background="@color/background" >
- </ListView>
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal"
- android:layout_marginBottom="0dp"
- android:layout_gravity="center"
- >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:layout_gravity="center"
- android:text="合计:"
- android:textColor="@color/white"
- />
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="200"
- android:id="@+id/editt"
- android:layout_gravity="center"
- android:textColor="@color/white"
- android:background="@color/background"
- />
-
- </LinearLayout>
-
- </LinearLayout>
|