bdp_dialog_notallow_pay.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="315dp"
  4. android:layout_height="wrap_content"
  5. android:background="@drawable/bdp_bg_white_round"
  6. android:orientation="vertical" >
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="120dp" >
  10. <ImageView
  11. android:id="@+id/bd_close"
  12. android:layout_width="15dp"
  13. android:layout_height="15dp"
  14. android:layout_alignParentRight="true"
  15. android:layout_alignParentTop="true"
  16. android:layout_marginRight="18dp"
  17. android:layout_marginTop="18dp"
  18. android:src="@drawable/bdp_icon_close_selector"
  19. android:visibility="gone" />
  20. <LinearLayout
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:layout_centerInParent="true"
  24. android:gravity="center"
  25. android:orientation="vertical" >
  26. <TextView
  27. android:id="@+id/title"
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:layout_centerInParent="true"
  31. android:layout_marginTop="20dp"
  32. android:gravity="center"
  33. android:text="@string/bdp_realname_auth_under_age"
  34. android:textColor="#333333"
  35. android:textSize="17sp" />
  36. <TextView
  37. android:id="@+id/content"
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:layout_margin="15dp"
  41. android:gravity="center"
  42. android:text="@string/bdp_realname_auth_tips"
  43. android:textColor="#ff666666"
  44. android:textSize="16sp" />
  45. </LinearLayout>
  46. </RelativeLayout>
  47. <View
  48. android:layout_width="match_parent"
  49. android:layout_height="1px"
  50. android:background="#cccccc" />
  51. <RelativeLayout
  52. android:layout_width="match_parent"
  53. android:layout_height="56dp" >
  54. <Button
  55. android:id="@+id/bd_ok"
  56. android:layout_width="match_parent"
  57. android:layout_height="match_parent"
  58. android:layout_centerInParent="true"
  59. android:background="@drawable/bdp_color_white__without_corners_selector"
  60. android:text="@string/bdp_ok"
  61. android:textColor="#ffea0063"
  62. android:textSize="16sp" />
  63. </RelativeLayout>
  64. </LinearLayout>