xunqu_activity_account.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. <RelativeLayout
  8. android:id="@+id/ixunqu_relativeLayout1"
  9. android:layout_width="fill_parent"
  10. android:layout_height="50dp"
  11. android:layout_alignParentTop="true"
  12. android:layout_centerHorizontal="true"
  13. android:background="#262B28" >
  14. <TextView
  15. android:id="@+id/ixunqu_textView1"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_centerHorizontal="true"
  19. android:layout_centerVertical="true"
  20. android:text="个人中心"
  21. android:textColor="#FFFFFF"
  22. android:textSize="20dp" />
  23. <Button
  24. android:id="@+id/xunqu_float_btn_account_back"
  25. android:layout_width="30dp"
  26. android:layout_height="30dp"
  27. android:layout_alignParentLeft="true"
  28. android:layout_centerVertical="true"
  29. android:layout_marginLeft="10dp"
  30. android:background="@drawable/xunqu_btn_back" />
  31. </RelativeLayout>
  32. <ScrollView
  33. android:id="@+id/ixunqu_scrollView1"
  34. android:layout_width="fill_parent"
  35. android:layout_height="fill_parent"
  36. android:layout_below="@+id/ixunqu_relativeLayout1"
  37. android:layout_centerHorizontal="true"
  38. android:scrollbars="none"
  39. android:visibility="visible">
  40. <LinearLayout
  41. android:id="@+id/ixunqu_linearLayout1"
  42. android:layout_width="fill_parent"
  43. android:layout_height="wrap_content"
  44. android:gravity="center_vertical"
  45. android:orientation="vertical" >
  46. <LinearLayout
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:layout_marginTop="20dp" >
  50. <ImageView
  51. android:id="@+id/xunqu_float_btn_account_user_image"
  52. android:layout_width="60dp"
  53. android:layout_height="60dp"
  54. android:layout_marginLeft="10dp"
  55. android:src="@drawable/xunqu_title_bar_logo" />
  56. <LinearLayout
  57. android:layout_width="fill_parent"
  58. android:layout_height="fill_parent"
  59. android:gravity="center_vertical"
  60. android:orientation="vertical" >
  61. <TextView
  62. android:id="@+id/ixunqu_textView2"
  63. android:layout_width="wrap_content"
  64. android:layout_height="wrap_content"
  65. android:layout_marginLeft="10dp"
  66. android:text="玩家信息"
  67. android:textColor="#000000"
  68. android:textSize="20dp" />
  69. <TextView
  70. android:id="@+id/xunqu_float_btn_account_user_name"
  71. android:layout_width="wrap_content"
  72. android:layout_height="wrap_content"
  73. android:layout_marginLeft="10dp"
  74. android:layout_marginTop="5dp"
  75. android:text="账号:"
  76. android:textColor="#ADADAD" />
  77. </LinearLayout>
  78. </LinearLayout>
  79. <com.xunqu.sdk.union.ui.floatbutton.MyListView
  80. android:id="@+id/xunqu_float_btn_account_listView"
  81. android:layout_width="match_parent"
  82. android:layout_height="100dp"
  83. android:layout_marginTop="20dp"
  84. android:layout_marginLeft="10dp"
  85. android:layout_marginRight="10dp"
  86. android:background="@drawable/xunqu_account_button"
  87. android:divider="#EDEDED"
  88. android:dividerHeight="0.5dp"
  89. android:scrollbars="none" />
  90. <LinearLayout
  91. android:layout_width="match_parent"
  92. android:layout_height="wrap_content"
  93. android:layout_marginTop="10dp"
  94. android:layout_marginBottom="20dp"
  95. android:gravity="center" >
  96. <Button
  97. android:id="@+id/xunqu_float_btn_account_sa"
  98. android:layout_width="match_parent"
  99. android:layout_height="wrap_content"
  100. android:layout_marginLeft="10dp"
  101. android:layout_marginRight="10dp"
  102. android:text="切换账号"
  103. android:textSize="20dp"
  104. android:textColor="#FFFFFF"
  105. android:visibility="gone"
  106. android:background="@drawable/ixunqu_button_blue"/>
  107. </LinearLayout>
  108. </LinearLayout>
  109. </ScrollView>
  110. </RelativeLayout>