<?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:fitsSystemWindows="true"
|
android:background="@color/ac_bg"
|
android:orientation="vertical">
|
<include layout="@layout/top_bar_layout" />
|
<LinearLayout
|
android:id="@+id/ll_top_content"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
</LinearLayout>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/x1"
|
android:background="@color/gray_line"/>
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1">
|
<in.srain.cube.views.ptr.PtrClassicFrameLayout xmlns:cube_ptr="http://schemas.android.com/apk/res-auto"
|
android:id="@+id/rotate_header_list_view_frame"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
cube_ptr:ptr_duration_to_close="200"
|
cube_ptr:ptr_duration_to_close_header="1000"
|
cube_ptr:ptr_keep_header_when_refresh="true"
|
cube_ptr:ptr_pull_to_fresh="false"
|
cube_ptr:ptr_ratio_of_header_height_to_refresh="1.2"
|
cube_ptr:ptr_resistance="1.7">
|
<android.support.v7.widget.RecyclerView
|
android:id="@+id/recyclerview"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
</in.srain.cube.views.ptr.PtrClassicFrameLayout>
|
|
<com.moral.andbrickslib.views.EmptyLayout
|
android:id="@+id/empty_layout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:visibility="gone" />
|
</RelativeLayout>
|
<LinearLayout
|
android:id="@+id/ll_bottom_content"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
</LinearLayout>
|
</LinearLayout>
|