| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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: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>
- <LinearLayout
- android:id="@+id/ll_bussiness"
- android:layout_width="fill_parent"
- android:layout_height="@dimen/ll_layout_height_50"
- android:background="@drawable/ss3"
- android:orientation="vertical" >
- <EditText
- android:id="@+id/et_search"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_margin="@dimen/et_layout_margin_10"
- android:background="@drawable/ss2"
- android:drawableLeft="@drawable/ss1"
- android:hint="搜索"
- android:textSize="@dimen/textsize_13" >
-
<requestFocus />
- </EditText>
- </LinearLayout>
- <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"
- android:paddingBottom="@dimen/lv_paddingBottom_20" >
- </ListView>
- </LinearLayout>
- </LinearLayout>
|