bdp_tips_dialog.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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="165dp"
  5. android:background="@drawable/bdp_bg_white_round"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:id="@+id/bdpContentText"
  9. android:layout_width="match_parent"
  10. android:layout_height="109dp"
  11. android:gravity="center"
  12. android:lineSpacingExtra="3dp"
  13. android:paddingLeft="20dp"
  14. android:paddingRight="20dp"
  15. android:textColor="#333333"
  16. android:textSize="14sp" />
  17. <View
  18. android:layout_width="match_parent"
  19. android:layout_height="1px"
  20. android:background="#cccccc" />
  21. <LinearLayout
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:gravity="center_vertical"
  25. android:orientation="horizontal" >
  26. <TextView
  27. android:id="@+id/btnCancel"
  28. android:layout_width="0dp"
  29. android:layout_height="50dp"
  30. android:layout_weight="1"
  31. android:background="@drawable/bdp_color_white__without_corners_selector"
  32. android:gravity="center"
  33. android:text="@string/bdp_paycenter_alipay_cancel"
  34. android:textColor="#cfcfcf"
  35. android:textSize="@dimen/bdp_paycenter_text_size_16_sp" />
  36. <View
  37. android:layout_width="1px"
  38. android:layout_height="match_parent"
  39. android:layout_marginBottom="15dp"
  40. android:layout_marginTop="15dp"
  41. android:background="#c6c6c6" />
  42. <TextView
  43. android:id="@+id/bdpOk"
  44. android:layout_width="0dp"
  45. android:layout_height="56dp"
  46. android:layout_weight="1"
  47. android:background="@drawable/bdp_color_white__without_corners_selector"
  48. android:gravity="center"
  49. android:text="@string/bdp_pay"
  50. android:textColor="#e5006a"
  51. android:textSize="@dimen/bdp_paycenter_text_size_16_sp" />
  52. </LinearLayout>
  53. </LinearLayout>