From 4f73b1023094c7ba27bc16bcb8ba3f138140cc13 Mon Sep 17 00:00:00 2001 From: Peter Serwylo Date: Tue, 14 Mar 2017 08:49:11 +1100 Subject: [PATCH] Prefer start/end over left/right Even though it doesn't matter here because it is going from one side of the parent all the way to the other. I hope it makes it easier if we completely avoid right/left and only ever use start/end. Then searching for RTL problems will be easier. --- app/src/main/res/layout/installed_apps_layout.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/main/res/layout/installed_apps_layout.xml b/app/src/main/res/layout/installed_apps_layout.xml index 34a49be61..7e8b6edb7 100644 --- a/app/src/main/res/layout/installed_apps_layout.xml +++ b/app/src/main/res/layout/installed_apps_layout.xml @@ -8,11 +8,11 @@ @@ -22,8 +22,8 @@ android:layout_height="0dp" tools:listitem="@layout/installed_app_list_item" app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintLeft_toLeftOf="parent" - app:layout_constraintRight_toRightOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toBottomOf="@+id/toolbar" android:scrollbars="vertical" />