fragment_ask_bind_phone.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="@dimen/dialog_common_width"
  4. android:layout_height="@dimen/dialog_common_height"
  5. android:layout_gravity="center"
  6. android:background="@drawable/shape_dialog">
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_centerInParent="true"
  11. android:gravity="center"
  12. android:orientation="vertical">
  13. <TextView
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:maxLines="1"
  17. android:textColor="@color/grey_text_color"
  18. android:text="@string/account_risk"
  19. android:textSize="10sp"/>
  20. <LinearLayout
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:layout_gravity="center"
  24. android:layout_marginTop="5dp"
  25. android:gravity="center"
  26. android:orientation="horizontal">
  27. <Button
  28. android:id="@id/continue_login_btn"
  29. android:layout_width="@dimen/btn_bind_phone_width"
  30. android:layout_height="match_parent"
  31. android:background="@drawable/selector_rounded_btn_blue"
  32. android:gravity="center"
  33. android:text="@string/continue_login"
  34. android:textColor="@color/white"
  35. android:textSize="10sp"/>
  36. <Button
  37. android:id="@id/bind_phone_btn"
  38. android:layout_width="@dimen/btn_bind_phone_width"
  39. android:layout_height="@dimen/btn_bind_phone_height"
  40. android:layout_marginLeft="15dp"
  41. android:background="@drawable/selector_rounded_btn_deep_grren"
  42. android:gravity="center"
  43. android:text="@string/bind_phone"
  44. android:textColor="@color/white"
  45. android:textSize="10sp"/>
  46. </LinearLayout>
  47. </LinearLayout>
  48. <LinearLayout
  49. android:id="@id/no_remind_again_ll"
  50. android:layout_width="wrap_content"
  51. android:layout_height="wrap_content"
  52. android:layout_alignParentBottom="true"
  53. android:paddingBottom="5dp"
  54. android:paddingLeft="5dp"
  55. android:gravity="center_vertical"
  56. android:orientation="horizontal">
  57. <ImageView
  58. android:id="@id/no_remind_again_iv"
  59. android:layout_width="7dp"
  60. android:layout_height="7dp"
  61. android:src="@drawable/iv_unselected"/>
  62. <TextView
  63. android:textColor="@color/grey_text_color"
  64. android:layout_width="wrap_content"
  65. android:layout_height="wrap_content"
  66. android:layout_marginLeft="2dp"
  67. android:text="@string/no_remind_again"
  68. android:textSize="8sp"/>
  69. </LinearLayout>
  70. </RelativeLayout>