123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#F5F3F6"
- android:orientation="horizontal" >
- <RelativeLayout
- android:id="@+id/ixunqu_relativeLayout1"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:background="#262B28" >
- <TextView
- android:id="@+id/ixunqu_textView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:text="个人中心"
- android:textColor="#FFFFFF"
- android:textSize="20dp" />
- <Button
- android:id="@+id/xunqu_float_btn_account_back"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:background="@drawable/xunqu_btn_back" />
- </RelativeLayout>
- <ScrollView
- android:id="@+id/ixunqu_scrollView1"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_below="@+id/ixunqu_relativeLayout1"
- android:layout_centerHorizontal="true"
- android:scrollbars="none"
- android:visibility="visible">
- <LinearLayout
- android:id="@+id/ixunqu_linearLayout1"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp" >
- <ImageView
- android:id="@+id/xunqu_float_btn_account_user_image"
- android:layout_width="60dp"
- android:layout_height="60dp"
- android:layout_marginLeft="10dp"
- android:src="@drawable/xunqu_title_bar_logo" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center_vertical"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/ixunqu_textView2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="玩家信息"
- android:textColor="#000000"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/xunqu_float_btn_account_user_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="5dp"
- android:text="账号:"
- android:textColor="#ADADAD" />
- </LinearLayout>
- </LinearLayout>
- <com.xunqu.sdk.union.ui.floatbutton.MyListView
- android:id="@+id/xunqu_float_btn_account_listView"
- android:layout_width="match_parent"
- android:layout_height="100dp"
- android:layout_marginTop="20dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/xunqu_account_button"
- android:divider="#EDEDED"
- android:dividerHeight="0.5dp"
- android:scrollbars="none" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="20dp"
- android:gravity="center" >
- <Button
- android:id="@+id/xunqu_float_btn_account_sa"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:text="切换账号"
- android:textSize="20dp"
- android:textColor="#FFFFFF"
- android:visibility="gone"
- android:background="@drawable/ixunqu_button_blue"/>
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- </RelativeLayout>
|