xunqu_fragment_bind_phone.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical" >
  7. <!-- 退出确认页面 -->
  8. <LinearLayout
  9. android:id="@+id/ixunqu_linearLayout1"
  10. android:layout_width="fill_parent"
  11. android:layout_height="50dp"
  12. android:layout_alignParentTop="true"
  13. android:layout_centerHorizontal="true"
  14. android:layout_marginLeft="12dp"
  15. android:layout_marginRight="12dp"
  16. android:layout_marginTop="10dp"
  17. android:orientation="vertical"
  18. android:gravity="center" >
  19. <TextView
  20. android:id="@+id/ixunqu_textView1"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:gravity="center"
  24. android:textSize="20dp"
  25. android:textColor="#8C8C8C"
  26. android:text="@string/xunqu_bind_phone_text" />
  27. </LinearLayout>
  28. <LinearLayout
  29. android:id="@+id/ixunqu_linearLayout"
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:layout_alignParentLeft="true"
  33. android:layout_below="@+id/ixunqu_linearLayout1"
  34. android:layout_marginTop="20dp"
  35. android:weightSum="2" >
  36. <Button
  37. android:id="@+id/xunqu_bind_phone_btn_back"
  38. android:layout_width="0dp"
  39. android:layout_height="40dp"
  40. android:layout_marginBottom="10dp"
  41. android:layout_weight="1"
  42. android:text="@string/xunqu_bind_phone_btn_back"
  43. android:textColor="#000000"
  44. android:layout_marginLeft="12dp"
  45. android:layout_marginRight="12dp"
  46. android:background="@drawable/xunqu_button_gray"
  47. android:textSize="18sp" />
  48. <Button
  49. android:id="@+id/xunqu_bind_phone_btn_ok"
  50. android:layout_width="0dp"
  51. android:layout_height="40dp"
  52. android:layout_marginBottom="10dp"
  53. android:layout_weight="1"
  54. android:text="@string/xunqu_bind_phone_btn_ok"
  55. android:background="@drawable/ixunqu_button_blue"
  56. android:layout_marginLeft="12dp"
  57. android:layout_marginRight="12dp"
  58. android:textColor="#FFFFFF"
  59. android:textSize="18sp" />
  60. </LinearLayout>
  61. </RelativeLayout>