123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:background="@color/zzz_single_seperate_line_color"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <include
- android:id="@+id/zzz_title"
- layout="@layout/zzz_second_title_layout"/>
- <View
- android:id="@+id/zzz_transparent_view"
- android:layout_below="@id/zzz_title"
- android:layout_width="match_parent"
- android:layout_height="@dimen/zzz_title_gradient_height"
- android:background="@drawable/zzz_title_gradient"/>
- <include
- android:id="@+id/zzz_user_center_header"
- android:layout_below="@id/zzz_title"
- android:layout_width="match_parent"
- android:layout_height="@dimen/zzz_single_usercenter_header_height"
- layout="@layout/zzz_single_user_center_header"/>
- <include
- android:id="@+id/zzz_my_message"
- android:layout_below="@id/zzz_user_center_header"
- android:layout_width="match_parent"
- android:layout_height="@dimen/zzz_single_usercenter_item_height"
- layout="@layout/zzz_personal_center_property_item"/>
- <include
- android:id="@+id/zzz_my_gift"
- android:layout_marginTop="@dimen/zzz_single_usercenter_separate_line_height"
- android:layout_below="@id/zzz_my_message"
- android:layout_width="match_parent"
- android:layout_height="@dimen/zzz_single_usercenter_item_height"
- layout="@layout/zzz_personal_center_property_item"/>
- <include
- android:id="@+id/zzz_my_feed_back"
- android:layout_marginTop="@dimen/zzz_single_usercenter_separate_line_height"
- android:layout_below="@id/zzz_my_gift"
- android:layout_width="match_parent"
- android:layout_height="@dimen/zzz_single_usercenter_item_height"
- layout="@layout/zzz_personal_center_property_item"/>
- <TextView
- android:id="@+id/zzz_switch_account"
- android:layout_width="match_parent"
- android:layout_height="@dimen/zzz_single_usercenter_item_height"
- android:layout_marginBottom="@dimen/zzz_single_usercenter_switch_account_margin_bottom"
- android:gravity="center"
- android:textSize="@dimen/zzz_single_usercenter_switch_account_text_size"
- android:background="@drawable/zzz_single_user_center_text_selector"
- android:layout_alignParentBottom="true"
- android:text="@string/zzz_single_switch_account"
- />
- </RelativeLayout>
|