aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZyg0te <edvard.holst@gmail.com>2015-03-22 14:34:14 +0100
committerGerrit Code Review <gerrit@cyanogenmod.org>2015-03-22 16:55:23 +0000
commit80daa0e169c07fe27a134633ad70a93947992923 (patch)
tree7a949ab11d56a703cc0fff95f9a3d544877ad765
parent07154e902ada5786fc74c69e8b0067255de562ae (diff)
downloadandroid_packages_apps_CMFileManager-80daa0e169c07fe27a134633ad70a93947992923.tar.gz
android_packages_apps_CMFileManager-80daa0e169c07fe27a134633ad70a93947992923.tar.bz2
android_packages_apps_CMFileManager-80daa0e169c07fe27a134633ad70a93947992923.zip
CMFileManager: Fixed positioning of title in editor custom ActionBar layout
The title TextView cannot be set left of a view within separate the LinearLayout containing the ActionBar buttons. Hence we set it to be left of the LinearLayout itself. This fixes the issue where the long title texts would cover the ActionBar buttons. Change-Id: I4f9883bb6aad6f7ceededc35305aa0c25d274acd
-rw-r--r--res/layout/simple_customtitle.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/layout/simple_customtitle.xml b/res/layout/simple_customtitle.xml
index 68286934..de0ff42b 100644
--- a/res/layout/simple_customtitle.xml
+++ b/res/layout/simple_customtitle.xml
@@ -59,7 +59,7 @@
android:layout_marginRight="@dimen/extra_large_margin"
android:textAppearance="@style/title_text_appearance"
android:layout_alignParentLeft="true"
- android:layout_toLeftOf="@id/ab_button0"
+ android:layout_toLeftOf="@id/ab_button_cluster"
android:layout_alignWithParentIfMissing="true"
android:contentDescription="@null"
android:gravity="left|center_vertical"