diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-07-10 07:59:47 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-07-10 07:59:47 +0000 |
commit | bc91260e8a36524294c635970051f902ed533cfc (patch) | |
tree | 242b21381204700ece2eb6a7e7665633ec3d13b5 /app/src/main/res/layout/activity_post_text.xml | |
parent | 117a33be3b3c112bcde45fce3974851a8ae58c47 (diff) | |
download | infinity-for-reddit-bc91260e8a36524294c635970051f902ed533cfc.tar infinity-for-reddit-bc91260e8a36524294c635970051f902ed533cfc.tar.gz infinity-for-reddit-bc91260e8a36524294c635970051f902ed533cfc.tar.bz2 infinity-for-reddit-bc91260e8a36524294c635970051f902ed533cfc.tar.lz infinity-for-reddit-bc91260e8a36524294c635970051f902ed533cfc.tar.xz infinity-for-reddit-bc91260e8a36524294c635970051f902ed533cfc.tar.zst infinity-for-reddit-bc91260e8a36524294c635970051f902ed533cfc.zip |
Place all the subscribed subreddits and users to SubscribedThingListingActivity instead of the navigation drawer in MainActivity.
Diffstat (limited to 'app/src/main/res/layout/activity_post_text.xml')
-rw-r--r-- | app/src/main/res/layout/activity_post_text.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/src/main/res/layout/activity_post_text.xml b/app/src/main/res/layout/activity_post_text.xml index cb08e1f2..9bc76c10 100644 --- a/app/src/main/res/layout/activity_post_text.xml +++ b/app/src/main/res/layout/activity_post_text.xml @@ -8,7 +8,8 @@ <androidx.core.widget.NestedScrollView android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + android:fillViewport="true"> <LinearLayout android:layout_width="match_parent" @@ -28,8 +29,7 @@ android:layout_width="24dp" android:layout_height="24dp" android:layout_alignParentStart="true" - android:layout_centerVertical="true" - android:src="@drawable/subreddit_default_icon" /> + android:layout_centerVertical="true" /> <TextView android:id="@+id/subreddit_name_text_view_post_text_activity" @@ -78,7 +78,7 @@ <EditText android:id="@+id/post_text_content_edit_text_post_text_activity" android:layout_width="match_parent" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:gravity="top" android:padding="16dp" android:hint="@string/post_text_content_hint" |