tyr_bind_user.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="#86000000"
  8. android:gravity="center"
  9. android:orientation="vertical"
  10. >
  11. <LinearLayout
  12. android:id="@+id/tyr_bind_user_root"
  13. android:layout_width="320dp"
  14. android:layout_height="wrap_content"
  15. android:orientation="vertical"
  16. android:padding="15dp"
  17. tools:background="#ffffff"
  18. >
  19. <TextView
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:layout_gravity="center"
  23. android:layout_marginBottom="20dp"
  24. android:layout_marginTop="5dp"
  25. android:text="绑定账号"
  26. android:textColor="#111111"
  27. android:textSize="18sp"/>
  28. <EditText
  29. android:id="@+id/tyr_bind_user_account"
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:layout_gravity="center"
  33. android:layout_marginBottom="12dp"
  34. android:background="@null"
  35. android:hint="账号"
  36. android:padding="10dp"
  37. android:textColor="#999999"
  38. android:textColorHint="#999999"
  39. android:textSize="14sp"/>
  40. <EditText
  41. android:id="@+id/tyr_bind_user_pwd"
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content"
  44. android:layout_gravity="center"
  45. android:layout_marginBottom="10dp"
  46. android:background="@null"
  47. android:hint="密码"
  48. android:padding="10dp"
  49. android:textColor="#999999"
  50. android:textColorHint="#999999"
  51. android:textSize="14sp"/>
  52. <Button
  53. android:id="@+id/tyr_bind_user_bind"
  54. android:layout_width="match_parent"
  55. android:layout_height="wrap_content"
  56. android:layout_gravity="center"
  57. android:layout_marginBottom="3dp"
  58. android:layout_marginTop="6dp"
  59. android:text="绑定"
  60. android:textColor="#ffffff"
  61. android:textSize="18sp"
  62. tools:background="#27CD5A"/>
  63. </LinearLayout>
  64. </LinearLayout>