| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@drawable/choosebg"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:background="@color/oldred"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/title"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center"
- android:text="售前登记回执项目"
- android:textColor="@color/black"
- android:textSize="18sp" />
- </LinearLayout>
- <ListView
- android:id="@+id/list_choose"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="#fff"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:fastScrollEnabled="true"
- android:focusable="true"
- android:listSelector="@drawable/list_null" >
- </ListView>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/EBEBEB" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_marginBottom="5dp"
- android:layout_marginTop="5dp"
- android:gravity="center"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/btsure"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:src="@drawable/im_ok" />
- </LinearLayout>
- </LinearLayout>
|