diff options
Diffstat (limited to 'app/src/main/res/layout/fragment_post.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_post.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_post.xml b/app/src/main/res/layout/fragment_post.xml new file mode 100644 index 00000000..e18a4a62 --- /dev/null +++ b/app/src/main/res/layout/fragment_post.xml @@ -0,0 +1,30 @@ +<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:id="@+id/coordinator_layout_post_fragment" + tools:context="ml.docilealligator.infinityforreddit.PostFragment"> + + <ProgressBar + android:id="@+id/progress_bar_post_fragment" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="16dp" + android:layout_marginBottom="16dp" + android:layout_gravity="center" /> + + <android.support.v7.widget.RecyclerView + android:id="@+id/recycler_view_post_fragment" + android:layout_width="match_parent" + android:layout_height="match_parent" /> + + <!--<android.support.design.widget.FloatingActionButton + android:id="@+id/fab_post_fragment" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="bottom|end" + android:layout_margin="@dimen/fab_margin" + app:srcCompat="@drawable/baseline_add_white_24" />--> + +</android.support.design.widget.CoordinatorLayout> |