diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2023-09-10 13:44:38 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2023-09-10 13:44:38 +0000 |
commit | 09adffed795be36767ef47998f7dd37217c78923 (patch) | |
tree | 117cca7b4f9feb786be8903da78501e43acaddf7 /app/src/main/res | |
parent | 6550bc70d6ef01b7ee26642930fd4b088b622254 (diff) | |
download | infinity-for-reddit-09adffed795be36767ef47998f7dd37217c78923.tar infinity-for-reddit-09adffed795be36767ef47998f7dd37217c78923.tar.gz infinity-for-reddit-09adffed795be36767ef47998f7dd37217c78923.tar.bz2 infinity-for-reddit-09adffed795be36767ef47998f7dd37217c78923.tar.lz infinity-for-reddit-09adffed795be36767ef47998f7dd37217c78923.tar.xz infinity-for-reddit-09adffed795be36767ef47998f7dd37217c78923.tar.zst infinity-for-reddit-09adffed795be36767ef47998f7dd37217c78923.zip |
Continue adding Card Layout 3.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/item_post_card_3_with_preview.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app/src/main/res/layout/item_post_card_3_with_preview.xml b/app/src/main/res/layout/item_post_card_3_with_preview.xml index 7a0ebd34..f68050b0 100644 --- a/app/src/main/res/layout/item_post_card_3_with_preview.xml +++ b/app/src/main/res/layout/item_post_card_3_with_preview.xml @@ -256,7 +256,9 @@ <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/bottom_constraint_layout_item_post_with_preview" android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="wrap_content" + android:paddingStart="8dp" + android:paddingEnd="8dp"> <com.google.android.material.button.MaterialButtonToggleGroup android:id="@+id/vote_button_toggle_item_post_card_3_with_preview" @@ -270,7 +272,7 @@ style="?attr/materialButtonOutlinedStyle" android:id="@+id/upvote_button_item_post_with_preview" android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:paddingStart="8dp" android:paddingEnd="8dp" android:minWidth="0dp" @@ -283,7 +285,7 @@ style="?attr/materialButtonOutlinedStyle" android:id="@+id/downvote_button_item_post_with_preview" android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:paddingStart="8dp" android:paddingEnd="8dp" android:minWidth="0dp" @@ -303,6 +305,7 @@ android:textSize="?attr/font_12" android:textStyle="bold" android:fontFamily="?attr/font_family" + app:iconTint="@null" app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toEndOf="@id/vote_button_toggle_item_post_card_3_with_preview" /> |