bdp_dialog_sure.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="260dp"
  4. android:layout_height="160dp"
  5. android:background="@drawable/bdp_bg_white_round"
  6. android:orientation="vertical" >
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="110dp" >
  10. <ImageView
  11. android:id="@+id/bd_iv_back_close"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:layout_alignParentRight="true"
  15. android:layout_alignParentTop="true"
  16. android:layout_marginRight="18dp"
  17. android:layout_marginTop="18dp"
  18. android:background="@drawable/bdp_icon_close_selector"
  19. android:visibility="gone" />
  20. <TextView
  21. android:id="@+id/txtTitle"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:layout_marginTop="30dp"
  25. android:gravity="center"
  26. android:textColor="@color/bdp_color_color_ff333333"
  27. android:textSize="16sp" />
  28. <TextView
  29. android:id="@+id/txtContent"
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:layout_alignTop="@id/txtTitle"
  33. android:layout_centerInParent="true"
  34. android:layout_marginTop="28dp"
  35. android:gravity="center"
  36. android:textColor="@color/bdp_color_color_ffcccccc"
  37. android:textSize="14sp" />
  38. </RelativeLayout>
  39. <View
  40. android:layout_width="match_parent"
  41. android:layout_height="0.5dp"
  42. android:background="@color/bdp_color_color_ffcccccc"/>
  43. <RelativeLayout
  44. android:layout_width="match_parent"
  45. android:layout_height="50dp"
  46. android:gravity="center_vertical"
  47. >
  48. <TextView
  49. android:id="@+id/btnA"
  50. android:layout_width="wrap_content"
  51. android:layout_height="wrap_content"
  52. android:layout_alignParentTop="true"
  53. android:layout_centerHorizontal="true"
  54. android:textColor="@color/bdp_color_color_ffe5006a"
  55. android:textSize="16sp" />
  56. </RelativeLayout>
  57. </LinearLayout>