diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-05-22 17:33:20 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-05-22 17:33:20 -0700 |
commit | 6a0bf662a2fd846477695075b68f282020d66f6f (patch) | |
tree | d96257e9bc0f10544cdee9b64b7472125d556dc6 /app/src/main/res | |
parent | f701c7d9ad5a4bd691de7dc3cf47b1967b60b516 (diff) | |
download | dsub-6a0bf662a2fd846477695075b68f282020d66f6f.tar.gz dsub-6a0bf662a2fd846477695075b68f282020d66f6f.tar.bz2 dsub-6a0bf662a2fd846477695075b68f282020d66f6f.zip |
Add abstract SelectRecyclerFragment
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/abstract_recycler_fragment.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/main/res/layout/abstract_recycler_fragment.xml b/app/src/main/res/layout/abstract_recycler_fragment.xml new file mode 100644 index 00000000..26c4971c --- /dev/null +++ b/app/src/main/res/layout/abstract_recycler_fragment.xml @@ -0,0 +1,26 @@ +<?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:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <LinearLayout + android:id="@+id/fragment_list_layout" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" > + + <View + android:layout_width="fill_parent" + android:layout_height="1px" + android:background="@color/dividerColor"/> + + <android.support.v7.widget.RecyclerView + android:id="@+id/fragment_recycler" + android:layout_width="fill_parent" + android:layout_height="0dip" + android:layout_weight="1.0"/> + + <include layout="@layout/tab_progress" /> + </LinearLayout> +</android.support.v4.widget.SwipeRefreshLayout>
\ No newline at end of file |