qs_wk_login_mobile.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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="wrap_content"
  5. android:layout_gravity="center"
  6. android:background="@color/qs_login_white"
  7. android:orientation="vertical"
  8. android:paddingLeft="20dp"
  9. android:paddingRight="20dp">
  10. <RelativeLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_marginTop="10dp">
  14. <ImageView
  15. android:id="@+id/qs_wk_iv_back"
  16. android:layout_width="20dp"
  17. android:layout_height="20dp"
  18. android:layout_centerVertical="true"
  19. android:src="@drawable/qs_wk_back_img" />
  20. <TextView
  21. android:id="@+id/qs_wk_tv_title"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:gravity="center"
  25. android:textColor="@color/qs_login_blue"
  26. android:textSize="25sp" />
  27. </RelativeLayout>
  28. <cn.qingshi.gamesdk.core.ui.EventEditText
  29. android:id="@+id/qs_wk_eet_phone"
  30. android:layout_width="match_parent"
  31. android:layout_height="35dp"
  32. android:layout_marginTop="20dp" />
  33. <cn.qingshi.gamesdk.core.ui.VerifyCodeEditText
  34. android:id="@+id/qs_wk_vc_sms"
  35. android:layout_width="match_parent"
  36. android:layout_height="35dp"
  37. android:layout_marginTop="20dp"
  38. android:background="@drawable/qs_login_et_frame_selector_bg" />
  39. <Button
  40. android:id="@+id/qs_wk_btn_login"
  41. style="?android:attr/borderlessButtonStyle"
  42. android:layout_width="match_parent"
  43. android:layout_height="35dp"
  44. android:layout_marginTop="20dp"
  45. android:layout_marginBottom="20dp"
  46. android:background="@drawable/qs_login_btn_blue_bg"
  47. android:text="手机登录"
  48. android:textAllCaps="false"
  49. android:textColor="@color/qs_login_white"
  50. android:textSize="16sp" />
  51. </LinearLayout>