From fdfddd26679a3095cad22b6c6fe31f84f731deb2 Mon Sep 17 00:00:00 2001 From: Torsten Grote <t@grobox.de> Date: Wed, 19 Sep 2018 14:56:45 -0300 Subject: [PATCH] Fix small RTL UI glitches in blog post layouts --- briar-android/src/main/res/layout/author_view.xml | 2 +- briar-android/src/main/res/layout/list_item_blog_comment.xml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/briar-android/src/main/res/layout/author_view.xml b/briar-android/src/main/res/layout/author_view.xml index 42bd3f7a21..ed332fedf7 100644 --- a/briar-android/src/main/res/layout/author_view.xml +++ b/briar-android/src/main/res/layout/author_view.xml @@ -63,7 +63,7 @@ <TextView android:id="@+id/dateView" - android:layout_width="0dp" + android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="?android:attr/textColorSecondary" android:textSize="@dimen/text_size_tiny" diff --git a/briar-android/src/main/res/layout/list_item_blog_comment.xml b/briar-android/src/main/res/layout/list_item_blog_comment.xml index f51e46a736..6c20a7a0c1 100644 --- a/briar-android/src/main/res/layout/list_item_blog_comment.xml +++ b/briar-android/src/main/res/layout/list_item_blog_comment.xml @@ -18,20 +18,21 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:padding="@dimen/listitem_vertical_margin" - app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:persona="commenter"/> <com.vanniktech.emoji.EmojiTextView android:id="@+id/bodyView" - android:layout_width="wrap_content" + android:layout_width="0dp" android:layout_height="wrap_content" android:paddingBottom="@dimen/listitem_vertical_margin" android:paddingEnd="@dimen/listitem_vertical_margin" android:paddingStart="@dimen/listitem_vertical_margin" android:textColor="?android:attr/textColorSecondary" android:textSize="@dimen/text_size_small" + app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/authorView" tools:text="This is a comment that appears below a blog post. Usually, it is expected to be rather short. Not much longer than this one."/> -- GitLab