Add padding below status content (#3559)

Fixes #3550
This commit is contained in:
Nik Clayton 2023-04-24 14:58:49 +02:00 committed by GitHub
parent f1b3faf85f
commit 4754388f99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="14dp"
android:paddingRight="14dp">
android:paddingRight="14dp"
android:paddingBottom="10dp">
<TextView
android:id="@+id/notification_top_text"
@ -133,7 +134,6 @@
android:layout_marginStart="14dp"
android:hyphenationFrequency="full"
android:lineSpacingMultiplier="1.1"
android:paddingBottom="10dp"
android:textColor="?android:textColorTertiary"
android:textSize="?attr/status_text_medium"
app:layout_constraintEnd_toEndOf="parent"
@ -148,7 +148,6 @@
android:layout_height="wrap_content"
android:layout_marginStart="14dp"
android:layout_marginTop="4dp"
android:layout_marginBottom="4dp"
android:minWidth="150dp"
android:minHeight="0dp"
android:paddingLeft="16dp"
@ -160,6 +159,7 @@
android:visibility="gone"
app:layout_constraintStart_toEndOf="@id/notification_status_avatar"
app:layout_constraintTop_toBottomOf="@id/notification_content"
tools:visibility="visible"
tools:text="@string/post_content_show_less" />
</androidx.constraintlayout.widget.ConstraintLayout>