activity_minecollect.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <include layout="@layout/view_title" />
  7. <LinearLayout
  8. android:id="@+id/ll_filter_all"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:background="@color/white"
  12. android:padding="@dimen/default_content_margin">
  13. <TextView
  14. android:id="@+id/tv_all"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="全部" />
  18. </LinearLayout>
  19. <RelativeLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent">
  22. <com.common.library.pulltorefresh.PullToRefreshListView
  23. android:id="@+id/pullToRefresh"
  24. android:layout_width="match_parent"
  25. android:layout_height="match_parent" />
  26. <RelativeLayout
  27. android:id="@+id/rl_nodata"
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:visibility="gone">
  31. <include layout="@layout/view_nodata" />
  32. </RelativeLayout>
  33. <LinearLayout
  34. android:id="@+id/ll_filter_content"
  35. android:layout_width="match_parent"
  36. android:layout_height="match_parent"
  37. android:background="@color/translucence"
  38. android:visibility="gone">
  39. <ListView
  40. android:id="@+id/lv_filter_content"
  41. android:layout_width="match_parent"
  42. android:layout_height="wrap_content"
  43. android:background="@color/white" />
  44. </LinearLayout>
  45. </RelativeLayout>
  46. </LinearLayout>