21 lines
928 B
XML
21 lines
928 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:id="@+id/refresher">
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:scrollbars="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" />
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
<!--<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|right"
|
|
android:layout_margin="24dp" />-->
|
|
</FrameLayout> |