fragment_bind_phone.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="@dimen/fragment_common_width"
  5. android:layout_height="@dimen/fragment_common_height"
  6. android:layout_gravity="center"
  7. android:background="#ffffff"
  8. android:gravity="center_horizontal"
  9. android:orientation="vertical">
  10. <include
  11. layout="@layout/include_top"/>
  12. <LinearLayout
  13. android:id="@id/enter_phone_num_ll"
  14. style="@style/ll_input_field_common"
  15. android:layout_marginTop="33dp">
  16. <TextView
  17. style="@style/tv_area_code"
  18. android:text="+86"/>
  19. <View
  20. android:layout_width="1dp"
  21. android:layout_height="match_parent"
  22. android:background="@color/line_bg"/>
  23. <com.kingcheergame.jqgamesdk.view.ClearableEditText
  24. android:id="@id/phone_num_et"
  25. style="@style/et_input_field_common"
  26. android:hint="@string/please_enter_the_phone_number"
  27. android:inputType="number"
  28. android:paddingRight="@dimen/cet_right_padding"/>
  29. </LinearLayout>
  30. <LinearLayout
  31. style="@style/ll_input_field_common"
  32. android:layout_marginTop="19dp">
  33. <ImageView
  34. style="@style/iv_input_field_common"
  35. android:src="@drawable/iv_get_notification_code"/>
  36. <View
  37. android:layout_width="1dp"
  38. android:layout_height="match_parent"
  39. android:background="@color/line_bg"/>
  40. <com.kingcheergame.jqgamesdk.view.ClearableEditText
  41. android:id="@id/verification_code_et"
  42. style="@style/et_input_field_common"
  43. android:hint="@string/please_enter_verification_code"
  44. android:inputType="number"/>
  45. <View
  46. android:id="@id/split_line_view"
  47. android:layout_width="1px"
  48. android:layout_height="match_parent"
  49. android:layout_gravity="center_vertical"
  50. android:layout_marginBottom="4dp"
  51. android:layout_marginLeft="4dp"
  52. android:layout_marginTop="4dp"
  53. android:background="#777879"
  54. android:visibility="gone"/>
  55. <Button
  56. android:id="@id/get_verification_code_btn"
  57. style="?android:attr/borderlessButtonStyle"
  58. android:layout_width="67dp"
  59. android:layout_height="match_parent"
  60. android:layout_margin="1dp"
  61. android:background="#ff7200"
  62. android:gravity="center"
  63. android:text="@string/get_verification_code"
  64. android:textColor="@color/white"
  65. android:textSize="10sp"/>
  66. </LinearLayout>
  67. <Button
  68. android:id="@id/finish_btn"
  69. style="@style/btn_common"
  70. android:layout_marginTop="21dp"
  71. android:background="@drawable/selector_btn_deep_green"
  72. android:text="@string/finish"/>
  73. <TextView
  74. android:id="@id/customer_service_phone_tv"
  75. style="@style/tv_customer_service_phone"
  76. android:layout_marginTop="10dp"
  77. android:visibility="gone"/>
  78. </LinearLayout>