| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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:id="@+id/parent"
- android:fitsSystemWindows="true"
- android:background="@drawable/choosebg"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/ll_layout_height_60"
- android:background="@color/oldred"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="请 选 择"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_18" />
-
- <TextView
- android:id="@+id/tv_right"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_18" />
- </RelativeLayout>
-
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/view_layout_height_1"
- android:background="@color/EBEBEB" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <ListView
- android:id="@+id/select_list"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:background="#fff"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:fastScrollEnabled="true"
- android:listSelector="@drawable/list_null" >
- </ListView>
- </LinearLayout>
- </LinearLayout>
|