summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-05-20 15:58:33 -0700
committerJohn Reck <jreck@google.com>2011-05-23 11:25:56 -0700
commitb8b2af8be793c442add61afbe852d55ef978361c (patch)
tree1471dabf892882fe0dadaa0d8eaa8b117cea7d7a /res
parent659f958873c44772bcd36e3b0de3a0ee1d3b7244 (diff)
downloadpackages_apps_Browser-b8b2af8be793c442add61afbe852d55ef978361c.zip
packages_apps_Browser-b8b2af8be793c442add61afbe852d55ef978361c.tar.gz
packages_apps_Browser-b8b2af8be793c442add61afbe852d55ef978361c.tar.bz2
Initial implementation of the useragent switcher
Change-Id: Iaa8262a678902645dbfaa8a53fe7212af7d9d53c
Diffstat (limited to 'res')
-rw-r--r--res/drawable-mdpi/ic_ua_android.pngbin0 -> 1431 bytes
-rw-r--r--res/drawable-mdpi/ic_ua_desktop.pngbin0 -> 973 bytes
-rw-r--r--res/values/strings.xml5
-rw-r--r--res/xml-sw600dp/lab_preferences.xml (renamed from res/xml-xlarge/lab_preferences.xml)6
4 files changed, 11 insertions, 0 deletions
diff --git a/res/drawable-mdpi/ic_ua_android.png b/res/drawable-mdpi/ic_ua_android.png
new file mode 100644
index 0000000..4f7aa45
--- /dev/null
+++ b/res/drawable-mdpi/ic_ua_android.png
Binary files differ
diff --git a/res/drawable-mdpi/ic_ua_desktop.png b/res/drawable-mdpi/ic_ua_desktop.png
new file mode 100644
index 0000000..4e2f5c2
--- /dev/null
+++ b/res/drawable-mdpi/ic_ua_desktop.png
Binary files differ
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 90c6cc1..ad8f64d 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -657,10 +657,15 @@
<string name="pref_use_instant_search_summary">
Use Google Instant when you use Google Search, to show results as you
type (this can increase data use).</string>
+ <!-- Title for the fullscreen lab feature [CHAR LIMIT=40] -->
<string name="pref_lab_fullscreen">Fullscreen</string>
<!-- Summary for the fullscreen lab feature [CHAR LIMIT=120] -->
<string name="pref_lab_fullscreen_summary">
Use fullscreen mode to hide the status bar.</string>
+ <!-- Title for the useragent switcher lab feature [CHAR LIMIT=40] -->
+ <string name="pref_enable_useragent_switcher">Useragent Switcher</string>
+ <!-- Summary for the useragent switcher lab feature [CHAR LIMIT=120] -->
+ <string name="pref_enable_useragent_switcher_summary">Toggle between tablet and desktop versions of a site (per tab)</string>
<!-- Title for a dialog displayed when the browser has a data connectivity
problem -->
diff --git a/res/xml-xlarge/lab_preferences.xml b/res/xml-sw600dp/lab_preferences.xml
index 87383b0..c858c38 100644
--- a/res/xml-xlarge/lab_preferences.xml
+++ b/res/xml-sw600dp/lab_preferences.xml
@@ -34,4 +34,10 @@
android:defaultValue="false"
android:title="@string/pref_use_instant_search"
android:summary="@string/pref_use_instant_search_summary" />
+
+ <CheckBoxPreference
+ android:key="enable_useragent_switcher"
+ android:defaultValue="false"
+ android:title="@string/pref_enable_useragent_switcher"
+ android:summary="@string/pref_enable_useragent_switcher_summary" />
</PreferenceScreen>