| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?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" >
- <include
- android:id="@+id/include_lay_ntitle"
- layout="@layout/fragment_title"
- android:visibility="gone" />
- <LinearLayout
- android:id="@+id/ll_original_title"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:background="@color/oldred"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="60dp"
- android:layout_height="fill_parent"
- android:gravity="center"
- android:textColor="@color/white"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:layout_weight="1"
- android:gravity="center"
- android:text="请 选 择"
- android:textColor="@color/white"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/dialog_select_right"
- android:layout_width="60dp"
- android:layout_height="fill_parent"
- android:gravity="center"
- android:text="确定"
- android:textColor="@color/white"
- android:textSize="18sp" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/layout_dialog_select_search"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:background="@drawable/ss3"
- android:orientation="vertical" >
- <EditText
- android:id="@+id/et_dialog_select_search"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_margin="10dp"
- android:background="@drawable/ss2"
- android:drawableLeft="@drawable/ss1"
- android:ems="10"
- android:hint="搜索" >
- <requestFocus />
- </EditText>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/EBEBEB" />
- <ListView
- android:id="@+id/lv_dialog_select_list"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:background="#fff"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:paddingBottom="@dimen/lv_paddingBottom_20" >
- </ListView>
- <!--
- android:fastScrollEnabled="true"
- android:focusable="true"
- android:listSelector="@drawable/list_null"
- -->
- </LinearLayout>
|