From b0aa2f53681ffd78b12f393eb7cb72b6ea4be0bb Mon Sep 17 00:00:00 2001 From: Fabrice Di Meglio Date: Fri, 4 May 2012 14:19:19 -0700 Subject: Hide Paint textLocale APIs - DO NOT MERGE - fix bug #6441521 Need to @hide Paint setTextLocale / getTextLocale - CJK support Change-Id: Ic536989243d7028e6f5fce7d60dfef4467bebffb --- graphics/java/android/graphics/Paint.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'graphics/java') diff --git a/graphics/java/android/graphics/Paint.java b/graphics/java/android/graphics/Paint.java index f68f9dce8eff..f9b8a5f066dd 100644 --- a/graphics/java/android/graphics/Paint.java +++ b/graphics/java/android/graphics/Paint.java @@ -1055,6 +1055,7 @@ public class Paint { * Get the text Locale. * * @return the paint's Locale used for drawing text, never null. + * @hide */ public Locale getTextLocale() { return mLocale; @@ -1085,6 +1086,7 @@ public class Paint { * job in certain ambiguous cases * * @param locale the paint's locale value for drawing text, must not be null. + * @hide */ public void setTextLocale(Locale locale) { if (locale == null) { -- cgit v1.2.3-59-g8ed1b