日常备份,下载列表已做好

This commit is contained in:
2018-06-15 16:13:28 +08:00
parent 98d876bfe7
commit 7a1c4f4351
28 changed files with 690 additions and 342 deletions

View File

@@ -1,12 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/refresh_layout"
android:id="@+id/lemon_refresh_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- 避免 id 命名冲突 -->
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:id="@+id/lemon_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

View File

@@ -1,36 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/load_more_view"
<RelativeLayout
android:id="@+id/load_more_Layout"
android:layout_width="match_parent"
android:layout_height="48dp"
android:gravity="center"
android:orientation="horizontal"
android:padding="8dp"
android:visibility="gone">
android:visibility="gone"
tools:visibility="visible">
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout android:id="@+id/load_more_loading"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:text="正在加载..."
android:textSize="14sp" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:text="正在加载..."
android:textSize="14sp" />
android:id="@+id/load_more_error"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_button_retry_adapter"
android:gravity="center"
android:text="数据错误,点我重试"
android:textSize="14sp"/>
</LinearLayout>
</RelativeLayout>
<TextView
android:id="@+id/no_more_view"
android:layout_width="match_parent"
android:layout_height="48dp"
android:gravity="center"
android:text=""
android:text="没有更多了O(∩_∩)O~"
android:textSize="14sp"
android:visibility="gone" />

View File

@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="RefreshRecyclerView">
<attr name="refresh_able" format="boolean"/>
<attr name="load_more_able" format="boolean"/>
<attr name="refresh_enable" format="boolean"/>
<!-- 其中之一为 true都能使用 加载更多 和 显示没有更多数据 功能 -->
<attr name="load_more_enable" format="boolean"/>
<attr name="show_no_more_enable" format="boolean"/>
</declare-styleable>
</resources>