diff options
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/layout/activity_post_text.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_uploaded_images_bottom_sheet.xml | 20 |
2 files changed, 17 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 41bfef50..8ae4fcb4 100644 --- a/app/src/main/res/layout/activity_post_text.xml +++ b/app/src/main/res/layout/activity_post_text.xml @@ -67,6 +67,7 @@ </LinearLayout> <RelativeLayout + android:id="@+id/subreddit_relative_layout_post_text_activity" android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingTop="8dp" diff --git a/app/src/main/res/layout/fragment_uploaded_images_bottom_sheet.xml b/app/src/main/res/layout/fragment_uploaded_images_bottom_sheet.xml index f3e96ef5..8c846541 100644 --- a/app/src/main/res/layout/fragment_uploaded_images_bottom_sheet.xml +++ b/app/src/main/res/layout/fragment_uploaded_images_bottom_sheet.xml @@ -19,15 +19,26 @@ android:textSize="?attr/font_18" android:textColor="?attr/primaryTextColor" /> - <LinearLayout + <TextView android:layout_width="match_parent" android:layout_height="wrap_content" - android:gravity="end"> + android:paddingTop="16dp" + android:paddingStart="16dp" + android:paddingEnd="16dp" + android:text="@string/uploaded_images_explanation" + android:fontFamily="?attr/font_family" + android:textSize="?attr/font_default" + android:textColor="?attr/secondaryTextColor" /> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content"> <com.google.android.material.button.MaterialButton android:id="@+id/capture_button_uploaded_images_bottom_sheet_fragment" - android:layout_width="wrap_content" + android:layout_width="0dp" android:layout_height="wrap_content" + android:layout_weight="1" android:layout_margin="16dp" android:backgroundTint="@color/colorPrimary" android:textColor="#FFFFFF" @@ -35,8 +46,9 @@ <com.google.android.material.button.MaterialButton android:id="@+id/upload_button_uploaded_images_bottom_sheet_fragment" - android:layout_width="wrap_content" + android:layout_width="0dp" android:layout_height="wrap_content" + android:layout_weight="1" android:layout_margin="16dp" android:backgroundTint="@color/colorPrimary" android:textColor="#FFFFFF" |