summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-06-16 17:44:29 -0700
committerJohn Reck <jreck@google.com>2011-06-17 10:42:55 -0700
commit7dc444b4c3b70a09a33c0892fb8677922bdf1ecc (patch)
tree46e04952dca7ea89e54f2aa3675361f76e0a7bf3 /res/layout
parentf43990eed0a2b97f181c44fd03271f1844a8d133 (diff)
downloadpackages_apps_Browser-7dc444b4c3b70a09a33c0892fb8677922bdf1ecc.zip
packages_apps_Browser-7dc444b4c3b70a09a33c0892fb8677922bdf1ecc.tar.gz
packages_apps_Browser-7dc444b4c3b70a09a33c0892fb8677922bdf1ecc.tar.bz2
Accessibility tweaks
Min font size now shows pt value Text size replaced with text zoom Change-Id: Ic5906be094425bc5099a17571868c7a994a6cb86
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/font_size_widget.xml (renamed from res/layout/min_font_size.xml)28
1 files changed, 8 insertions, 20 deletions
diff --git a/res/layout/min_font_size.xml b/res/layout/font_size_widget.xml
index d4d1314..296f5bf 100644
--- a/res/layout/min_font_size.xml
+++ b/res/layout/font_size_widget.xml
@@ -14,25 +14,13 @@
limitations under the License.
-->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/text"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingRight="6dip"
- android:paddingTop="6dip"
- android:paddingBottom="6dip"
- android:paddingLeft="8dip">
-
- <TextView
- android:text="@string/pref_min_font_size"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceMedium" />
-
- <SeekBar
- android:id="@+id/seekbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
-
-</LinearLayout>
+ android:minWidth="50sp"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:textColor="?android:attr/textColorSecondary"
+ android:layout_gravity="center_vertical"
+/>