tysdkn_fragment_real_name.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#ffffff"
  6. android:orientation="vertical">
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="48dp"
  10. android:background="#ff1f2228">
  11. <ImageView
  12. android:id="@+id/tysdkn_real_name_back"
  13. android:layout_width="48dp"
  14. android:layout_height="48dp"
  15. android:padding="15dp"
  16. android:layout_centerVertical="true"
  17. android:src="@drawable/tysdkn_recahrge_back_left" />
  18. <TextView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_centerInParent="true"
  22. android:text="实名认证"
  23. android:textColor="#ffffff"
  24. android:textSize="16sp" />
  25. </RelativeLayout>
  26. <LinearLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_marginLeft="10dp"
  30. android:layout_marginRight="10dp"
  31. android:layout_marginTop="23dp"
  32. android:orientation="vertical">
  33. <TextView
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:lineSpacingExtra="6dp"
  37. android:text="实名认证资料是您身份的重要资料,可保证您账号的安全性,我们会对您的信息做加密处理,认证成功后不可更改。"
  38. android:textColor="#FF333333"
  39. android:textSize="13sp" />
  40. <EditText
  41. android:id="@+id/tysdkn_et_real_name"
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content"
  44. android:layout_marginTop="25dp"
  45. android:background="@null"
  46. android:hint="输入真实姓名"
  47. android:imeOptions="actionDone"
  48. android:inputType="text"
  49. android:maxLines="1"
  50. android:textSize="13sp" />
  51. <View
  52. android:layout_width="match_parent"
  53. android:layout_height="0.5dp"
  54. android:layout_marginTop="10dp"
  55. android:background="#FFDCDCDC" />
  56. <EditText
  57. android:id="@+id/tysdkn_et_id_card"
  58. android:layout_width="match_parent"
  59. android:layout_height="wrap_content"
  60. android:layout_marginTop="25dp"
  61. android:background="@null"
  62. android:hint="输入身份证号码"
  63. android:imeOptions="actionDone"
  64. android:inputType="text"
  65. android:maxLines="1"
  66. android:textSize="13sp" />
  67. <View
  68. android:layout_width="match_parent"
  69. android:layout_height="0.5dp"
  70. android:layout_marginTop="10dp"
  71. android:background="#FFDCDCDC" />
  72. <Button
  73. android:id="@+id/tysdkn_btn_bind_real_name"
  74. android:layout_width="match_parent"
  75. android:layout_height="38dp"
  76. android:layout_gravity="center_horizontal"
  77. android:layout_marginTop="25dp"
  78. android:background="@drawable/tysdkn_btn_blue_selector"
  79. android:text="立即认证"
  80. android:textColor="#ffffff"
  81. android:textSize="16sp" />
  82. </LinearLayout>
  83. </LinearLayout>