summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--api/current.txt1
-rw-r--r--api/removed.txt8
-rw-r--r--core/java/android/view/View.java3
3 files changed, 11 insertions, 1 deletions
diff --git a/api/current.txt b/api/current.txt
index 1c9f871..3612698 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -30569,7 +30569,6 @@ package android.view {
method public boolean hasWindowFocus();
method public static android.view.View inflate(android.content.Context, int, android.view.ViewGroup);
method protected void initializeFadingEdge(android.content.res.TypedArray);
- method protected void initializeScrollbars(android.content.res.TypedArray);
method public void invalidate(android.graphics.Rect);
method public void invalidate(int, int, int, int);
method public void invalidate();
diff --git a/api/removed.txt b/api/removed.txt
index e69de29..8c19d04 100644
--- a/api/removed.txt
+++ b/api/removed.txt
@@ -0,0 +1,8 @@
+package android.view {
+
+ public class View implements android.view.accessibility.AccessibilityEventSource android.graphics.drawable.Drawable.Callback android.view.KeyEvent.Callback {
+ method protected void initializeScrollbars(android.content.res.TypedArray);
+ }
+
+}
+
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index d8fcfc5..e1ac8c9 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -4307,6 +4307,9 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* </p>
*
* @param a the styled attributes set to initialize the scrollbars from
+ *
+ * @removed Apps were never able to call this safely since the TypedArray parameter
+ * must have been obtained by filtering on android.R.styleable.View, which is not public.
*/
protected void initializeScrollbars(TypedArray a) {
initScrollCache();