dialog_choose.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:id="@+id/parent"
  6. android:background="@drawable/choosebg"
  7. android:orientation="vertical" >
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="@dimen/ll_layout_height_60"
  11. android:background="@color/oldred"
  12. android:orientation="horizontal" >
  13. <TextView
  14. android:id="@+id/title"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_centerInParent="true"
  18. android:text="请 选 择"
  19. android:textColor="@color/white"
  20. android:textSize="@dimen/textsize_18" />
  21. <TextView
  22. android:id="@+id/tv_right"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_marginRight="10dp"
  26. android:layout_centerVertical="true"
  27. android:layout_alignParentRight="true"
  28. android:textColor="@color/white"
  29. android:textSize="@dimen/textsize_18" />
  30. </RelativeLayout>
  31. <LinearLayout
  32. android:id="@+id/ll_bussiness"
  33. android:layout_width="fill_parent"
  34. android:layout_height="@dimen/ll_layout_height_50"
  35. android:background="@drawable/ss3"
  36. android:orientation="vertical" >
  37. <EditText
  38. android:id="@+id/et_search"
  39. android:layout_width="match_parent"
  40. android:layout_height="match_parent"
  41. android:layout_margin="@dimen/et_layout_margin_10"
  42. android:background="@drawable/ss2"
  43. android:drawableLeft="@drawable/ss1"
  44. android:hint="搜索"
  45. android:textSize="@dimen/textsize_13" >
  46. <requestFocus />
  47. </EditText>
  48. </LinearLayout>
  49. <View android:layout_width="match_parent"
  50. android:layout_height="@dimen/view_layout_height_1"
  51. android:background="@color/EBEBEB" />
  52. <LinearLayout
  53. android:layout_width="match_parent"
  54. android:layout_height="match_parent"
  55. android:orientation="vertical" >
  56. <ListView
  57. android:id="@+id/select_list"
  58. android:layout_width="fill_parent"
  59. android:layout_height="match_parent"
  60. android:background="#fff"
  61. android:cacheColorHint="#00000000"
  62. android:divider="@null"
  63. android:fastScrollEnabled="true"
  64. android:listSelector="@drawable/list_null"
  65. android:paddingBottom="@dimen/lv_paddingBottom_20" >
  66. </ListView>
  67. </LinearLayout>
  68. </LinearLayout>