ttw_order_account.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. >
  6. <include layout="@layout/ttw_cz_navigation"
  7. android:id="@+id/ic_top"
  8. android:layout_alignParentTop="true"
  9. />
  10. <FrameLayout
  11. android:id="@+id/tl_nav"
  12. android:layout_width="match_parent"
  13. android:layout_height="46dip"
  14. android:background="#ffffff"
  15. android:padding="4dip"
  16. android:layout_centerVertical="true"
  17. android:layout_below="@id/ic_top"
  18. >
  19. <View
  20. android:id="@+id/v_slider"
  21. android:layout_width="60dip"
  22. android:layout_height="36dip"
  23. android:layout_gravity="top|left"
  24. android:background="#ffffff"
  25. />
  26. <TableLayout
  27. android:id="@+id/ll_order_status"
  28. android:layout_height="match_parent"
  29. android:layout_width="match_parent"
  30. android:gravity="center_horizontal|center_vertical"
  31. >
  32. <TableRow
  33. android:layout_height="match_parent"
  34. android:layout_width="match_parent"
  35. >
  36. <TextView
  37. android:id="@+id/tv_success"
  38. android:layout_width="0dip"
  39. android:layout_height="32dip"
  40. android:text="支付成功"
  41. android:gravity="center_horizontal|center_vertical"
  42. android:layout_weight="1"
  43. android:textColor="#ff6905"
  44. />
  45. <TextView
  46. android:layout_width="1dp"
  47. android:layout_height="32dp"
  48. android:background="#efefef"
  49. android:gravity="center"
  50. />
  51. <TextView
  52. android:id="@+id/tv_wait"
  53. android:layout_toRightOf="@id/tv_success"
  54. android:layout_width="0dip"
  55. android:layout_height="32dip"
  56. android:text="未支付"
  57. android:gravity="center_horizontal|center_vertical"
  58. android:layout_weight="1"
  59. android:textColor="@android:color/black"
  60. />
  61. <TextView
  62. android:layout_width="1dp"
  63. android:layout_height="32dp"
  64. android:background="#efefef"
  65. android:gravity="center"
  66. />
  67. <TextView
  68. android:id="@+id/tv_fail"
  69. android:layout_toRightOf="@id/tv_wait"
  70. android:layout_width="0dip"
  71. android:layout_height="32dip"
  72. android:text="支付失败"
  73. android:layout_weight="1"
  74. android:gravity="center_horizontal|center_vertical"
  75. android:textColor="@android:color/black"
  76. /></TableRow>
  77. </TableLayout>
  78. </FrameLayout>
  79. <android.support.v4.view.ViewPager
  80. android:layout_below="@id/tl_nav"
  81. android:id="@+id/viewPager"
  82. android:layout_width="match_parent"
  83. android:background="#efefef"
  84. android:layout_height="match_parent" />
  85. </RelativeLayout>