From 3c1b66dcd1efeaf4e2689acbaa76735444a6fa6f Mon Sep 17 00:00:00 2001 From: Peter Serwylo Date: Wed, 12 Apr 2017 12:10:54 +1000 Subject: [PATCH 1/7] Let buttons go all the way to the left, not just to the icon. On languages with longer translations, there is not enough space to fit the relevant translations on a single line of the button. Fixes #937. --- app/src/main/res/layout/app_details2_header.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/res/layout/app_details2_header.xml b/app/src/main/res/layout/app_details2_header.xml index 965cc4a3b..aee537417 100755 --- a/app/src/main/res/layout/app_details2_header.xml +++ b/app/src/main/res/layout/app_details2_header.xml @@ -125,8 +125,8 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/icon" - android:layout_toEndOf="@id/icon" - android:layout_toRightOf="@id/icon" + android:layout_alignParentStart="true" + android:layout_alignParentLeft="true" android:layout_alignParentEnd="true" android:layout_alignParentRight="true" android:clipToPadding="false" @@ -141,7 +141,7 @@ android:layout_weight="1" android:ellipsize="marquee" android:padding="12dp" - tools:text="THIS IS BUTTON 1" /> + tools:text="Uninstall" />