dialog_receipt_result.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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:background="@drawable/choosebg"
  6. android:orientation="vertical" >
  7. <LinearLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="60dp"
  10. android:background="@color/oldred"
  11. android:orientation="vertical" >
  12. <TextView
  13. android:id="@+id/title"
  14. android:layout_width="fill_parent"
  15. android:layout_height="fill_parent"
  16. android:gravity="center"
  17. android:text="售前登记回执项目"
  18. android:textColor="@color/black"
  19. android:textSize="18sp" />
  20. </LinearLayout>
  21. <ListView
  22. android:id="@+id/list_choose"
  23. android:layout_width="fill_parent"
  24. android:layout_height="wrap_content"
  25. android:background="#fff"
  26. android:cacheColorHint="#00000000"
  27. android:divider="@null"
  28. android:fastScrollEnabled="true"
  29. android:focusable="true"
  30. android:listSelector="@drawable/list_null" >
  31. </ListView>
  32. <View
  33. android:layout_width="match_parent"
  34. android:layout_height="1dp"
  35. android:background="@color/EBEBEB" />
  36. <LinearLayout
  37. android:layout_width="fill_parent"
  38. android:layout_height="50dp"
  39. android:layout_marginBottom="5dp"
  40. android:layout_marginTop="5dp"
  41. android:gravity="center"
  42. android:orientation="horizontal" >
  43. <ImageView
  44. android:id="@+id/btsure"
  45. android:layout_width="wrap_content"
  46. android:layout_height="wrap_content"
  47. android:gravity="center"
  48. android:src="@drawable/im_ok" />
  49. </LinearLayout>
  50. </LinearLayout>