fragment_homemember.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. ~ Copyright (c) 2015. Ncomz. All Rights Reserved
  4. -->
  5. <LinearLayout
  6. xmlns:android="http://schemas.android.com/apk/res/android"
  7. android:id="@+id/llPageRoot"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:background="@drawable/color_body_01"
  11. android:fitsSystemWindows="true"
  12. android:orientation="vertical">
  13. <include layout="@layout/app_toolbar"/>
  14. <RelativeLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="0dp"
  17. android:layout_weight="1">
  18. <LinearLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. android:orientation="vertical"
  22. >
  23. <android.support.v4.widget.SwipeRefreshLayout
  24. android:id="@+id/swiperefreshlayou"
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent"
  27. android:visibility="visible">
  28. <android.support.v7.widget.RecyclerView
  29. android:id="@+id/rcvList"
  30. android:layout_width="match_parent"
  31. android:layout_height="match_parent"
  32. android:padding="4dp"
  33. android:overScrollMode="never"
  34. android:clipToPadding="false"/>
  35. </android.support.v4.widget.SwipeRefreshLayout>
  36. <include layout="@layout/content_nohub_master"/>
  37. <include layout="@layout/content_nohub_guest"/>
  38. <include layout="@layout/content_nodata_master"/>
  39. <include layout="@layout/content_nodata_guest"/>
  40. <include layout="@layout/content_nohub_nohome_smartcity"/>
  41. <include layout="@layout/content_nohub_master_smartcity"/>
  42. <include layout="@layout/content_nohub_guest_smartcity"/>
  43. <include layout="@layout/content_nodata_master_smartcity"/>
  44. <include layout="@layout/content_nodata_guest_smartcity"/>
  45. </LinearLayout>
  46. <ImageView
  47. android:layout_width="match_parent"
  48. android:layout_height="6dp"
  49. android:layout_alignParentTop="true"
  50. android:background="@drawable/shadow_top"/>
  51. <ImageView
  52. android:layout_width="match_parent"
  53. android:layout_height="7dp"
  54. android:layout_alignParentBottom="true"
  55. android:background="@drawable/shadow_bottom"/>
  56. </RelativeLayout>
  57. </LinearLayout>