2019-02-01 09:19:44 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-02-15 23:48:25 +08:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:id="@+id/swipeLayout" >
|
2019-02-01 09:19:44 +08:00
|
|
|
<!-- TODO: Update blank fragment layout -->
|
2019-02-15 23:48:25 +08:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/rvBangdan"
|
|
|
|
android:divider="#ffff0000"
|
|
|
|
android:dividerHeight="10dp"
|
2019-02-01 09:19:44 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-02-15 23:48:25 +08:00
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
android:paddingBottom="50dp"
|
|
|
|
/>
|
2019-02-01 09:19:44 +08:00
|
|
|
|
2019-02-15 23:48:25 +08:00
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|