zk_activity_bind_tel.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. style="@style/dalan_framelayout_llyt"
  5. android:paddingBottom="15dp"
  6. android:paddingTop="8dp">
  7. <ImageView
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_gravity="center"
  11. android:src="@drawable/zk_bind_tel_privilege" />
  12. <LinearLayout
  13. style="@style/dalan_frame_llyt"
  14. android:layout_marginTop="@dimen/dalan_margin_12">
  15. <EditText
  16. android:id="@+id/dalan_etx_bind_tel_tel"
  17. style="@style/dalan_account_edittext"
  18. android:hint="@string/dalan_input_bind_tel" />
  19. </LinearLayout>
  20. <LinearLayout
  21. style="@style/dalan_frame_llyt"
  22. android:layout_marginTop="@dimen/dalan_editText_margin">
  23. <EditText
  24. android:id="@+id/dalan_etx_bind_tel_verification_code"
  25. style="@style/dalan_account_edittext"
  26. android:hint="@string/dalan_input_verification_code" />
  27. <Button
  28. android:id="@+id/dalan_btn_bind_tel_get_verification_code"
  29. style="@style/dalan_btn_verification_code"
  30. android:text="@string/dalan_btn_get_verification_code" />
  31. </LinearLayout>
  32. <TextView
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:layout_gravity="end"
  36. android:layout_marginTop="@dimen/dalan_check_box_protocol_margin"
  37. android:text="@string/dalan_please_bind_tel"
  38. android:textColor="@color/dalan_orange"
  39. android:textSize="@dimen/dalan_text_size_protocol" />
  40. <Button
  41. android:id="@+id/dalan_btn_bind_tel_ok"
  42. style="@style/dalan_cyan_button"
  43. android:layout_marginTop="15dp"
  44. android:text="@string/dalan_btn_bind" />
  45. </LinearLayout>