bdp_dialog_pay_result_notify.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="278dp"
  4. android:layout_height="wrap_content"
  5. android:background="@drawable/bdp_bg_white_round"
  6. android:minHeight="165dp"
  7. android:orientation="vertical">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:gravity="center_horizontal"
  12. android:minHeight="109dp"
  13. android:orientation="vertical" >
  14. <!-- 结果类型 -->
  15. <TextView
  16. android:id="@+id/txt_type"
  17. android:layout_marginTop="25dp"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="@string/bdp_paycenter_pay_result_notify_submit"
  21. android:textColor="#333333"
  22. android:textSize="18sp" />
  23. <!-- 提示文字 -->
  24. <TextView
  25. android:id="@+id/txt_tip"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:layout_marginBottom="15dp"
  29. android:layout_marginTop="15dp"
  30. android:paddingLeft="20dp"
  31. android:paddingRight="20dp"
  32. android:text="@string/bdp_paycenter_pay_result_notify_fail_cancel_tip"
  33. android:textColor="#ff666666"
  34. android:textSize="14sp" />
  35. <!-- 返利商品 -->
  36. <TextView
  37. android:id="@+id/txt_activity"
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:layout_marginBottom="5dp"
  41. android:gravity="center_horizontal"
  42. android:paddingLeft="20dp"
  43. android:paddingRight="20dp"
  44. android:visibility="gone"
  45. android:textColor="#ff333333"
  46. android:textSize="14sp" />
  47. </LinearLayout>
  48. <LinearLayout
  49. android:layout_width="match_parent"
  50. android:layout_height="56dp"
  51. android:orientation="vertical" >
  52. <View
  53. android:layout_width="match_parent"
  54. android:layout_height="1px"
  55. android:background="#cccccc" />
  56. <!-- 返回游戏按钮 -->
  57. <Button
  58. android:id="@+id/btn_back"
  59. android:layout_width="match_parent"
  60. android:layout_height="56dip"
  61. android:background="@drawable/bdp_color_white__without_corners_selector"
  62. android:text="@string/bdp_paycenter_pay_result_notify_return"
  63. android:textColor="#ffea0063"
  64. android:textSize="16sp"
  65. android:textStyle="bold" />
  66. </LinearLayout>
  67. </LinearLayout>