xunqu_activity_account_unbind_phone.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="#F5F3F6"
  6. android:orientation="horizontal" >
  7. <ScrollView
  8. android:id="@+id/ixunqu_scrollView1"
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent"
  11. android:layout_centerHorizontal="true"
  12. android:scrollbars="none"
  13. android:visibility="visible" >
  14. <RelativeLayout
  15. android:id="@+id/ixunqu_linearLayout1"
  16. android:layout_width="fill_parent"
  17. android:layout_height="300dp"
  18. android:gravity="center_vertical"
  19. android:layout_marginLeft="20dp"
  20. android:layout_marginTop="20dp">
  21. <LinearLayout
  22. android:id="@+id/ixunqu_linearLayout3"
  23. android:layout_width="match_parent"
  24. android:layout_height="50dp"
  25. android:layout_alignParentLeft="true"
  26. android:layout_below="@+id/ixunqu_linearLayout4"
  27. android:layout_marginTop="20dp"
  28. android:weightSum="2" >
  29. <TextView
  30. android:id="@+id/ixunqu_textView3"
  31. android:layout_width="wrap_content"
  32. android:layout_height="fill_parent"
  33. android:layout_weight="0"
  34. android:gravity="center_vertical"
  35. android:text="验证码"
  36. android:textSize="15dp"
  37. android:textColor="#000000" />
  38. <EditText
  39. android:id="@+id/xunqu_float_btn_account_bind_phone_code"
  40. android:layout_width="wrap_content"
  41. android:layout_height="40dp"
  42. android:layout_marginLeft="10dp"
  43. android:layout_weight="1.2"
  44. android:background="@drawable/xunqu_account_button"
  45. android:ems="10"
  46. android:hint="短信验证码"
  47. android:inputType="number"
  48. android:paddingLeft="10dp"
  49. android:paddingRight="10dp"
  50. android:textColor="#000000"
  51. android:textColorHint="#AAAAAA"
  52. android:textCursorDrawable="@null" />
  53. </LinearLayout>
  54. <LinearLayout
  55. android:id="@+id/ixunqu_linearLayout2"
  56. android:layout_width="match_parent"
  57. android:layout_height="wrap_content"
  58. android:layout_alignParentLeft="true"
  59. android:layout_below="@+id/ixunqu_linearLayout3"
  60. android:layout_marginBottom="40dp"
  61. android:layout_marginTop="10dp"
  62. android:gravity="center" >
  63. <Button
  64. android:id="@+id/xunqu_float_btn_account_bind_phone_get_code"
  65. android:layout_width="150dp"
  66. android:layout_height="wrap_content"
  67. android:background="@drawable/ixunqu_button_blue"
  68. android:text="获取验证码"
  69. android:textColor="#FFFFFF" />
  70. </LinearLayout>
  71. <TextView
  72. android:id="@+id/xunqu_float_btn_account_bind_phone_user_name"
  73. android:layout_width="wrap_content"
  74. android:layout_height="wrap_content"
  75. android:layout_alignParentLeft="true"
  76. android:layout_alignParentTop="true"
  77. android:text="您的账号:"
  78. android:textColor="#000000"
  79. android:textSize="15dp" />
  80. <TextView
  81. android:id="@+id/ixunqu_textView4"
  82. android:layout_width="wrap_content"
  83. android:layout_height="wrap_content"
  84. android:layout_alignParentLeft="true"
  85. android:layout_below="@+id/xunqu_float_btn_account_bind_phone_user_name"
  86. android:layout_marginTop="30dp"
  87. android:text="请牢记 您的账号 \n解绑手机后 不能再使用手机号登录"
  88. android:textSize="15dp"
  89. android:textColor="#FF0000" />
  90. <LinearLayout
  91. android:id="@+id/ixunqu_linearLayout4"
  92. android:layout_width="match_parent"
  93. android:layout_height="50dp"
  94. android:layout_alignParentLeft="true"
  95. android:layout_below="@+id/ixunqu_textView4"
  96. android:layout_marginTop="20dp"
  97. android:orientation="horizontal"
  98. android:weightSum="2" >
  99. <TextView
  100. android:id="@+id/ixunqu_textView2"
  101. android:layout_width="wrap_content"
  102. android:layout_height="fill_parent"
  103. android:layout_weight="0"
  104. android:gravity="center_vertical"
  105. android:text="手机号"
  106. android:textSize="15dp"
  107. android:textColor="#000000" />
  108. <EditText
  109. android:id="@+id/xunqu_float_btn_account_bind_phone_number"
  110. android:layout_width="wrap_content"
  111. android:layout_height="40dp"
  112. android:layout_marginLeft="10dp"
  113. android:layout_weight="1.2"
  114. android:background="@drawable/xunqu_account_button"
  115. android:ems="10"
  116. android:hint="请输入您要解绑的手机号码"
  117. android:inputType="number"
  118. android:paddingLeft="10dp"
  119. android:paddingRight="10dp"
  120. android:textColor="#000000"
  121. android:textColorHint="#AAAAAA"
  122. android:textCursorDrawable="@null" />
  123. </LinearLayout>
  124. </RelativeLayout>
  125. </ScrollView>
  126. </RelativeLayout>