diff options
Diffstat (limited to 'app/src/main/res/layout')
7 files changed, 7 insertions, 1 deletions
diff --git a/app/src/main/res/layout/fragment_comments_listing.xml b/app/src/main/res/layout/fragment_comments_listing.xml index 7dfb31e4..886c093a 100644 --- a/app/src/main/res/layout/fragment_comments_listing.xml +++ b/app/src/main/res/layout/fragment_comments_listing.xml @@ -28,6 +28,7 @@ android:id="@+id/fetch_comments_info_linear_layout_comments_listing_fragment" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_marginBottom="48dp" android:gravity="center" android:orientation="vertical" android:visibility="gone"> diff --git a/app/src/main/res/layout/fragment_followed_users_listing.xml b/app/src/main/res/layout/fragment_followed_users_listing.xml index e5b64728..62ab964e 100644 --- a/app/src/main/res/layout/fragment_followed_users_listing.xml +++ b/app/src/main/res/layout/fragment_followed_users_listing.xml @@ -15,6 +15,7 @@ android:id="@+id/no_subscriptions_linear_layout_followed_users_listing_fragment" android:layout_width="match_parent" android:layout_height="match_parent" + android:layout_marginBottom="48dp" android:gravity="center" android:orientation="vertical" android:visibility="gone"> diff --git a/app/src/main/res/layout/fragment_post.xml b/app/src/main/res/layout/fragment_post.xml index 9083b01d..240bcb60 100644 --- a/app/src/main/res/layout/fragment_post.xml +++ b/app/src/main/res/layout/fragment_post.xml @@ -26,6 +26,7 @@ android:id="@+id/fetch_post_info_linear_layout_post_fragment" android:layout_width="match_parent" android:layout_height="match_parent" + android:layout_marginBottom="48dp" android:gravity="center" android:orientation="vertical" android:visibility="gone"> diff --git a/app/src/main/res/layout/fragment_subreddit_listing.xml b/app/src/main/res/layout/fragment_subreddit_listing.xml index d460b569..acc31dab 100644 --- a/app/src/main/res/layout/fragment_subreddit_listing.xml +++ b/app/src/main/res/layout/fragment_subreddit_listing.xml @@ -28,6 +28,7 @@ android:id="@+id/fetch_subreddit_listing_info_linear_layout_subreddit_listing_fragment" android:layout_width="match_parent" android:layout_height="match_parent" + android:layout_marginBottom="48dp" android:gravity="center" android:orientation="vertical" android:visibility="gone"> diff --git a/app/src/main/res/layout/fragment_subscribed_subreddits_listing.xml b/app/src/main/res/layout/fragment_subscribed_subreddits_listing.xml index 25294baf..89227f12 100644 --- a/app/src/main/res/layout/fragment_subscribed_subreddits_listing.xml +++ b/app/src/main/res/layout/fragment_subscribed_subreddits_listing.xml @@ -15,6 +15,7 @@ android:id="@+id/no_subscriptions_linear_layout_subreddits_listing_fragment" android:layout_width="match_parent" android:layout_height="match_parent" + android:layout_marginBottom="48dp" android:gravity="center" android:orientation="vertical" android:visibility="gone"> diff --git a/app/src/main/res/layout/fragment_user_listing.xml b/app/src/main/res/layout/fragment_user_listing.xml index 91eb926e..bdd39dab 100644 --- a/app/src/main/res/layout/fragment_user_listing.xml +++ b/app/src/main/res/layout/fragment_user_listing.xml @@ -28,6 +28,7 @@ android:id="@+id/fetch_user_listing_info_linear_layout_user_listing_fragment" android:layout_width="match_parent" android:layout_height="match_parent" + android:layout_marginBottom="48dp" android:gravity="center" android:orientation="vertical" android:visibility="gone"> diff --git a/app/src/main/res/layout/item_load_comments_failed_placeholder.xml b/app/src/main/res/layout/item_load_comments_failed_placeholder.xml index 094d58bc..ef3342d4 100644 --- a/app/src/main/res/layout/item_load_comments_failed_placeholder.xml +++ b/app/src/main/res/layout/item_load_comments_failed_placeholder.xml @@ -2,7 +2,7 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_margin="36dp" + android:layout_margin="48dp" android:orientation="vertical"> <ImageView |