jm_select_mobile_login_8.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="@dimen/jm_login_width_8"
  4. android:layout_height="@dimen/jm_login_height_8"
  5. android:background="@color/jmfont_white"
  6. android:orientation="vertical">
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginTop="@dimen/jm_reback_margin">
  11. <ImageView
  12. android:id="@+id/btn_reback"
  13. android:layout_width="@dimen/jm_login_icon_width"
  14. android:layout_height="@dimen/jm_login_icon_width"
  15. android:layout_centerVertical="true"
  16. android:layout_marginLeft="@dimen/jm_reback_margin"
  17. android:background="@drawable/jm_reback"
  18. android:visibility="visible"/>
  19. <TextView
  20. android:id="@+id/tv_title"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:gravity="center"
  24. android:text="手机登录"
  25. android:textColor="@color/jmfont_fonts_blues"
  26. android:textSize="18sp"/>
  27. </RelativeLayout>
  28. <EditText
  29. android:id="@+id/et_input_phone"
  30. android:layout_width="match_parent"
  31. android:layout_height="36dp"
  32. android:layout_marginLeft="20dp"
  33. android:layout_marginTop="20dp"
  34. android:layout_marginRight="20dp"
  35. android:background="@drawable/jm_input_bg_8"
  36. android:digits="0123456789"
  37. android:hint="@string/user_edit_phone_hint"
  38. android:paddingLeft="30dp"
  39. android:textColor="@color/jmfont_gray"
  40. android:textSize="13sp"/>
  41. <com.jmhy.sdk.view.VerifyCodeEditText
  42. android:id="@+id/et_input_sms"
  43. android:layout_width="match_parent"
  44. android:layout_height="36dp"
  45. android:layout_marginLeft="20dp"
  46. android:layout_marginTop="10dp"
  47. android:layout_marginRight="20dp"/>
  48. <Button
  49. android:id="@+id/btn_login"
  50. android:layout_width="match_parent"
  51. android:layout_height="36dp"
  52. android:layout_marginLeft="20dp"
  53. android:layout_marginTop="30dp"
  54. android:layout_marginRight="20dp"
  55. android:background="@color/jmfont_fonts_blues"
  56. android:text="手机登录"
  57. android:textColor="@color/jmfont_white"
  58. android:textSize="16sp"/>
  59. </LinearLayout>