zzz_single_user_center_header.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:gravity="center"
  5. android:background="@drawable/zzz_single_user_center_bg"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8. <LinearLayout
  9. android:gravity="center|center_vertical"
  10. android:orientation="vertical"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content">
  13. <ImageView
  14. android:id="@+id/zzz_user_icon"
  15. android:layout_width="@dimen/zzz_single_usercenter_icon_width"
  16. android:layout_height="@dimen/zzz_single_usercenter_icon_width"
  17. android:background="@drawable/zzz_user_icon"/>
  18. <TextView
  19. android:id="@+id/zzz_user_name"
  20. android:layout_marginTop="@dimen/zzz_single_usercenter_username_margin_top"
  21. android:textColor="@color/zzz_white"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:textSize="@dimen/zzz_single_usercenter_username_text_size"
  25. />
  26. </LinearLayout>
  27. </LinearLayout>