diff options
-rw-r--r-- | api/current.txt | 1 | ||||
-rw-r--r-- | core/java/android/view/View.java | 5 | ||||
-rw-r--r-- | graphics/java/android/graphics/Paint.java | 4 |
3 files changed, 2 insertions, 8 deletions
diff --git a/api/current.txt b/api/current.txt index 4f50bf3..f1a168e 100644 --- a/api/current.txt +++ b/api/current.txt @@ -23046,7 +23046,6 @@ package android.view { method public boolean willNotDraw(); field public static android.util.Property ALPHA; field protected static int DEFAULT_TEXT_DIRECTION; - field protected static float DEFAULT_TEXT_DIRECTION_CHAR_COUNT_THRESHOLD; field public static final int DRAWING_CACHE_QUALITY_AUTO = 0; // 0x0 field public static final int DRAWING_CACHE_QUALITY_HIGH = 1048576; // 0x100000 field public static final int DRAWING_CACHE_QUALITY_LOW = 524288; // 0x80000 diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index aa9b3ab..bb12a57 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -2595,11 +2595,6 @@ public class View implements Drawable.Callback2, KeyEvent.Callback, Accessibilit protected static int DEFAULT_TEXT_DIRECTION = TEXT_DIRECTION_INHERIT; /** - * Default threshold for "char count" heuristic. - */ - protected static float DEFAULT_TEXT_DIRECTION_CHAR_COUNT_THRESHOLD = 0.6f; - - /** * The text direction that has been defined by {@link #setTextDirection(int)}. * * {@hide} diff --git a/graphics/java/android/graphics/Paint.java b/graphics/java/android/graphics/Paint.java index 896f81e..ee65223 100644 --- a/graphics/java/android/graphics/Paint.java +++ b/graphics/java/android/graphics/Paint.java @@ -1594,7 +1594,7 @@ public class Paint { } /** - * Return the glypth Ids for the characters in the string. + * Return the glyph Ids for the characters in the string. * * @param text The text to measure * @param start The index of the first char to to measure @@ -1613,7 +1613,7 @@ public class Paint { * * Used only for BiDi / RTL Tests */ - public int getTextGlypths(String text, int start, int end, int contextStart, int contextEnd, + public int getTextGlyphs(String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) { if (text == null) { throw new IllegalArgumentException("text cannot be null"); |