summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2013-09-23 19:26:20 -0700
committernicolasroard <nicolasroard@google.com>2013-09-23 23:27:00 -0700
commit8db4f458ac9d28a508471dfb874abbe170a5ac23 (patch)
treec84c884129107a11790215da2fbe418e5fb26c37 /res
parentd04aaf626da8aea7f8f18341499e0b51a60e4d32 (diff)
downloadandroid_packages_apps_Gallery2-8db4f458ac9d28a508471dfb874abbe170a5ac23.tar.gz
android_packages_apps_Gallery2-8db4f458ac9d28a508471dfb874abbe170a5ac23.tar.bz2
android_packages_apps_Gallery2-8db4f458ac9d28a508471dfb874abbe170a5ac23.zip
Fix export dialog UI
bug:10889576 bug:10712083 Change-Id: I7921c06365775625a85e3d0a997d844c42586b01
Diffstat (limited to 'res')
-rw-r--r--res/layout/filtershow_export_dialog.xml39
1 files changed, 27 insertions, 12 deletions
diff --git a/res/layout/filtershow_export_dialog.xml b/res/layout/filtershow_export_dialog.xml
index bfa302d79..4e13f39da 100644
--- a/res/layout/filtershow_export_dialog.xml
+++ b/res/layout/filtershow_export_dialog.xml
@@ -40,7 +40,8 @@
<TextView
android:text="@string/size"
- android:layout_gravity="right|center_vertical"/>
+ android:layout_marginLeft="8dp"
+ android:layout_gravity="start|center_vertical"/>
<EditText
android:id="@+id/editableWidth"
@@ -60,27 +61,41 @@
<TextView
android:id="@+id/estimadedSize"
- android:layout_gravity="center"/>
+ android:layout_marginRight="8dp"
+ android:layout_gravity="end|center_vertical"/>
- <TextView
+ <LinearLayout
+ android:layout_columnSpan="5"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+
+ <TextView
android:text="@string/quality"
- android:layout_margin="7dp"
- android:layout_gravity="right|center_vertical" />
+ android:layout_width="wrap_content"
+ android:layout_height="fill_parent"
+ android:layout_margin="8dp" />
- <SeekBar
+ <SeekBar
android:id="@+id/qualitySeekBar"
- android:layout_margin="7dp"
+ android:layout_margin="8dp"
android:layout_gravity="center"
android:max="100"
android:progress="100"
- android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_width="0dp"
+ android:layout_weight="1"
android:layout_columnSpan="3"
- android:minWidth="250dp"/>
+ android:minWidth="250dp" />
- <TextView
+ <TextView
android:id="@+id/qualityTextView"
- android:layout_margin="7dp"
- android:layout_gravity="left|center_vertical"/>
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_margin="8dp"
+ android:layout_gravity="end|center_vertical" />
+
+ </LinearLayout>
+
</GridLayout>