diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-03-04 14:45:41 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-03-04 14:45:41 +0000 |
commit | 2ef72bc79833f1b9224f9c4b8a1f2208f919da18 (patch) | |
tree | 081c319b596fb3fe2ad3d64a39f920ccd41e4dab /app/src/main/res/layout | |
parent | e8cb0d329cd358e4ac2e8ee8c4e808e0d0389e50 (diff) | |
download | infinity-for-reddit-2ef72bc79833f1b9224f9c4b8a1f2208f919da18.tar infinity-for-reddit-2ef72bc79833f1b9224f9c4b8a1f2208f919da18.tar.gz infinity-for-reddit-2ef72bc79833f1b9224f9c4b8a1f2208f919da18.tar.bz2 infinity-for-reddit-2ef72bc79833f1b9224f9c4b8a1f2208f919da18.tar.lz infinity-for-reddit-2ef72bc79833f1b9224f9c4b8a1f2208f919da18.tar.xz infinity-for-reddit-2ef72bc79833f1b9224f9c4b8a1f2208f919da18.tar.zst infinity-for-reddit-2ef72bc79833f1b9224f9c4b8a1f2208f919da18.zip |
Anonymous subreddit subscription is available.
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/fragment_post.xml | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/app/src/main/res/layout/fragment_post.xml b/app/src/main/res/layout/fragment_post.xml index 46a36ce1..22a662c2 100644 --- a/app/src/main/res/layout/fragment_post.xml +++ b/app/src/main/res/layout/fragment_post.xml @@ -1,23 +1,9 @@ <androidx.coordinatorlayout.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" tools:application="ml.docilealligator.infinityforreddit.fragments.PostFragment"> - <androidx.swiperefreshlayout.widget.SwipeRefreshLayout - android:id="@+id/swipe_refresh_layout_post_fragment" - android:layout_width="match_parent" - android:layout_height="match_parent"> - - <ml.docilealligator.infinityforreddit.customviews.CustomToroContainer - android:id="@+id/recycler_view_post_fragment" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:clipToPadding="false" /> - - </androidx.swiperefreshlayout.widget.SwipeRefreshLayout> - <LinearLayout android:id="@+id/fetch_post_info_linear_layout_post_fragment" android:layout_width="match_parent" @@ -44,4 +30,17 @@ </LinearLayout> + <androidx.swiperefreshlayout.widget.SwipeRefreshLayout + android:id="@+id/swipe_refresh_layout_post_fragment" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <ml.docilealligator.infinityforreddit.customviews.CustomToroContainer + android:id="@+id/recycler_view_post_fragment" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:clipToPadding="false" /> + + </androidx.swiperefreshlayout.widget.SwipeRefreshLayout> + </androidx.coordinatorlayout.widget.CoordinatorLayout> |