bdp_paycenter_layout_dialog_close.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/bdp_paycenter_layout_dialog_close_parent"
  4. android:layout_width="278dp"
  5. android:layout_height="165dp"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:id="@+id/bdp_paycenter_tv_dialog_is_give_up_pay"
  9. android:layout_width="match_parent"
  10. android:layout_height="109dp"
  11. android:gravity="center"
  12. android:text="@string/bdp_paycenter_tip_give_up_pay"
  13. android:textColor="#333333"
  14. android:textSize="17sp" />
  15. <View
  16. android:layout_height="1px"
  17. android:layout_width="match_parent"
  18. android:background="#cccccc"
  19. />
  20. <LinearLayout
  21. android:layout_width="fill_parent"
  22. android:layout_height="wrap_content"
  23. android:gravity="center_vertical"
  24. android:orientation="horizontal">
  25. <TextView
  26. android:id="@+id/bdp_paycenter_btn_dialog_cancel"
  27. android:layout_width="0dp"
  28. android:layout_height="56dp"
  29. android:layout_weight="1"
  30. android:gravity="center"
  31. android:text="@string/bdp_paycenter_alipay_cancel"
  32. android:textColor="#cfcfcf"
  33. android:background="@drawable/bdp_color_white__without_corners_selector"
  34. android:textSize="@dimen/bdp_paycenter_text_size_16_sp" />
  35. <View
  36. android:layout_height="match_parent"
  37. android:layout_width="1px"
  38. android:background="#c6c6c6"
  39. android:layout_marginTop="15dp"
  40. android:layout_marginBottom="15dp"
  41. />
  42. <TextView
  43. android:id="@+id/bdp_paycenter_btn_dialog_ensure"
  44. android:layout_width="0dp"
  45. android:layout_height="56dp"
  46. android:layout_weight="1"
  47. android:gravity="center"
  48. android:background="@drawable/bdp_color_white__without_corners_selector"
  49. android:text="@string/bdp_paycenter_alipay_ensure"
  50. android:textColor="#3388ff"
  51. android:textSize="@dimen/bdp_paycenter_text_size_16_sp" />
  52. </LinearLayout>
  53. </LinearLayout>