123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <include layout="@layout/view_title" />
- <LinearLayout
- android:id="@+id/ll_filter_all"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:padding="@dimen/default_content_margin">
- <TextView
- android:id="@+id/tv_all"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="全部" />
- </LinearLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.common.library.pulltorefresh.PullToRefreshListView
- android:id="@+id/pullToRefresh"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- <RelativeLayout
- android:id="@+id/rl_nodata"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone">
- <include layout="@layout/view_nodata" />
- </RelativeLayout>
- <LinearLayout
- android:id="@+id/ll_filter_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/translucence"
- android:visibility="gone">
- <ListView
- android:id="@+id/lv_filter_content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white" />
- </LinearLayout>
- </RelativeLayout>
- </LinearLayout>
|