activity_payment.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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:fitsSystemWindows="true"
  7. android:background="@drawable/choosebg"
  8. android:orientation="vertical" >
  9. <RelativeLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="@dimen/ll_layout_height_60"
  12. android:background="@color/oldred"
  13. android:orientation="horizontal" >
  14. <TextView
  15. android:id="@+id/title"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_centerInParent="true"
  19. android:text="请 选 择"
  20. android:textColor="@color/white"
  21. android:textSize="@dimen/textsize_18" />
  22. <TextView
  23. android:id="@+id/tv_right"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_marginRight="10dp"
  27. android:layout_centerVertical="true"
  28. android:layout_alignParentRight="true"
  29. android:textColor="@color/white"
  30. android:textSize="@dimen/textsize_18" />
  31. </RelativeLayout>
  32. <View
  33. android:layout_width="match_parent"
  34. android:layout_height="@dimen/view_layout_height_1"
  35. android:background="@color/EBEBEB" />
  36. <LinearLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="match_parent"
  39. android:orientation="vertical" >
  40. <ListView
  41. android:id="@+id/select_list"
  42. android:layout_width="fill_parent"
  43. android:layout_height="match_parent"
  44. android:background="#fff"
  45. android:cacheColorHint="#00000000"
  46. android:divider="@null"
  47. android:fastScrollEnabled="true"
  48. android:listSelector="@drawable/list_null" >
  49. </ListView>
  50. </LinearLayout>
  51. </LinearLayout>