summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-06-17 13:05:56 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-06-17 13:05:56 -0700
commit79e16da930dee1b13c4fb6b88c0fbcc6c5b537e0 (patch)
treeca1ae8079894ba96b4f26b659ce340f3df182393
parentd3cdbf0a4f6be4b14c056badc11ebe88028afcd6 (diff)
parentcaeb120170477f52516cd9d12469c582e7dec8fe (diff)
downloadframeworks_base-79e16da930dee1b13c4fb6b88c0fbcc6c5b537e0.zip
frameworks_base-79e16da930dee1b13c4fb6b88c0fbcc6c5b537e0.tar.gz
frameworks_base-79e16da930dee1b13c4fb6b88c0fbcc6c5b537e0.tar.bz2
Merge "Make textZoom public"
-rw-r--r--api/current.txt8
-rw-r--r--core/java/android/webkit/WebSettings.java9
2 files changed, 11 insertions, 6 deletions
diff --git a/api/current.txt b/api/current.txt
index 613d63e..ee0aa18 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -23719,7 +23719,8 @@ package android.webkit {
method public boolean getSavePassword();
method public synchronized java.lang.String getSerifFontFamily();
method public synchronized java.lang.String getStandardFontFamily();
- method public synchronized android.webkit.WebSettings.TextSize getTextSize();
+ method public deprecated synchronized android.webkit.WebSettings.TextSize getTextSize();
+ method public synchronized int getTextZoom();
method public deprecated synchronized boolean getUseDoubleTree();
method public deprecated boolean getUseWebViewBackgroundForOverscrollBackground();
method public synchronized boolean getUseWideViewPort();
@@ -23769,7 +23770,8 @@ package android.webkit {
method public synchronized void setStandardFontFamily(java.lang.String);
method public synchronized void setSupportMultipleWindows(boolean);
method public void setSupportZoom(boolean);
- method public synchronized void setTextSize(android.webkit.WebSettings.TextSize);
+ method public deprecated synchronized void setTextSize(android.webkit.WebSettings.TextSize);
+ method public synchronized void setTextZoom(int);
method public deprecated synchronized void setUseDoubleTree(boolean);
method public deprecated void setUseWebViewBackgroundForOverscrollBackground(boolean);
method public synchronized void setUseWideViewPort(boolean);
@@ -23808,7 +23810,7 @@ package android.webkit {
enum_constant public static final android.webkit.WebSettings.RenderPriority NORMAL;
}
- public static final class WebSettings.TextSize extends java.lang.Enum {
+ public static final deprecated class WebSettings.TextSize extends java.lang.Enum {
method public static android.webkit.WebSettings.TextSize valueOf(java.lang.String);
method public static final android.webkit.WebSettings.TextSize[] values();
enum_constant public static final android.webkit.WebSettings.TextSize LARGER;
diff --git a/core/java/android/webkit/WebSettings.java b/core/java/android/webkit/WebSettings.java
index 9802990..761007f 100644
--- a/core/java/android/webkit/WebSettings.java
+++ b/core/java/android/webkit/WebSettings.java
@@ -59,6 +59,7 @@ public class WebSettings {
* NORMAL is 100%
* LARGER is 150%
* LARGEST is 200%
+ * @deprecated Use {@link WebSettings#setTextZoom(int)} and {@link WebSettings#getTextZoom()} instead.
*/
public enum TextSize {
SMALLEST(50),
@@ -711,7 +712,6 @@ public class WebSettings {
/**
* Set the text zoom of the page in percent. Default is 100.
* @param textZoom A percent value for increasing or decreasing the text.
- * @hide
*/
public synchronized void setTextZoom(int textZoom) {
if (mTextSize != textZoom) {
@@ -728,7 +728,6 @@ public class WebSettings {
* Get the text zoom of the page in percent.
* @return A percent value describing the text zoom.
* @see setTextSizeZoom
- * @hide
*/
public synchronized int getTextZoom() {
return mTextSize;
@@ -738,15 +737,19 @@ public class WebSettings {
* Set the text size of the page.
* @param t A TextSize value for increasing or decreasing the text.
* @see WebSettings.TextSize
+ * @deprecated Use {@link #setTextZoom(int)} instead
*/
public synchronized void setTextSize(TextSize t) {
setTextZoom(t.value);
}
/**
- * Get the text size of the page.
+ * Get the text size of the page. If the text size was previously specified
+ * in percent using {@link #setTextZoom(int)}, this will return
+ * the closest matching {@link TextSize}.
* @return A TextSize enum value describing the text size.
* @see WebSettings.TextSize
+ * @deprecated Use {@link #getTextZoom()} instead
*/
public synchronized TextSize getTextSize() {
TextSize closestSize = null;