aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorDocile-Alligator <25734209+Docile-Alligator@users.noreply.github.com>2024-03-17 22:38:21 +0000
committerDocile-Alligator <25734209+Docile-Alligator@users.noreply.github.com>2024-03-17 22:38:21 +0000
commitedc370ff7dfe13915247cc5f60dec61654ad8fed (patch)
treebbd4672302cb375a5a1489fabad0dd9c589759d3 /app/src/main/res/layout
parent41daebf702f150d7f3df0fa722d2c749931d859e (diff)
downloadinfinity-for-reddit-edc370ff7dfe13915247cc5f60dec61654ad8fed.tar
infinity-for-reddit-edc370ff7dfe13915247cc5f60dec61654ad8fed.tar.gz
infinity-for-reddit-edc370ff7dfe13915247cc5f60dec61654ad8fed.tar.bz2
infinity-for-reddit-edc370ff7dfe13915247cc5f60dec61654ad8fed.tar.lz
infinity-for-reddit-edc370ff7dfe13915247cc5f60dec61654ad8fed.tar.xz
infinity-for-reddit-edc370ff7dfe13915247cc5f60dec61654ad8fed.tar.zst
infinity-for-reddit-edc370ff7dfe13915247cc5f60dec61654ad8fed.zip
Add superscript to MarkdownBottomBarRecyclerViewAdapter.
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/activity_post_text.xml1
-rw-r--r--app/src/main/res/layout/fragment_uploaded_images_bottom_sheet.xml20
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"