Loading api/current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -45966,8 +45966,8 @@ package android.view { method public boolean hasTransientState(); method public boolean hasWindowFocus(); method public static android.view.View inflate(android.content.Context, int, android.view.ViewGroup); method public void invalidate(android.graphics.Rect); method public void invalidate(int, int, int, int); method public deprecated void invalidate(android.graphics.Rect); method public deprecated void invalidate(int, int, int, int); method public void invalidate(); method public void invalidateDrawable(android.graphics.drawable.Drawable); method public void invalidateOutline(); api/system-current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -49664,8 +49664,8 @@ package android.view { method public boolean hasTransientState(); method public boolean hasWindowFocus(); method public static android.view.View inflate(android.content.Context, int, android.view.ViewGroup); method public void invalidate(android.graphics.Rect); method public void invalidate(int, int, int, int); method public deprecated void invalidate(android.graphics.Rect); method public deprecated void invalidate(int, int, int, int); method public void invalidate(); method public void invalidateDrawable(android.graphics.drawable.Drawable); method public void invalidateOutline(); api/test-current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -46506,8 +46506,8 @@ package android.view { method public boolean hasTransientState(); method public boolean hasWindowFocus(); method public static android.view.View inflate(android.content.Context, int, android.view.ViewGroup); method public void invalidate(android.graphics.Rect); method public void invalidate(int, int, int, int); method public deprecated void invalidate(android.graphics.Rect); method public deprecated void invalidate(int, int, int, int); method public void invalidate(); method public void invalidateDrawable(android.graphics.drawable.Drawable); method public void invalidateOutline(); core/java/android/view/View.java +12 −0 Original line number Diff line number Diff line Loading @@ -15529,7 +15529,13 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * {@code dirty}. * * @param dirty the rectangle representing the bounds of the dirty region * * @deprecated The switch to hardware accelerated rendering in API 14 reduced * the importance of the dirty rectangle. In API 21 the given rectangle is * ignored entirely in favor of an internally-calculated area instead. * Because of this, clients are encouraged to just call {@link #invalidate()}. */ @Deprecated public void invalidate(Rect dirty) { final int scrollX = mScrollX; final int scrollY = mScrollY; Loading @@ -15550,7 +15556,13 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * @param t the top position of the dirty region * @param r the right position of the dirty region * @param b the bottom position of the dirty region * * @deprecated The switch to hardware accelerated rendering in API 14 reduced * the importance of the dirty rectangle. In API 21 the given rectangle is * ignored entirely in favor of an internally-calculated area instead. * Because of this, clients are encouraged to just call {@link #invalidate()}. */ @Deprecated public void invalidate(int l, int t, int r, int b) { final int scrollX = mScrollX; final int scrollY = mScrollY; Loading
api/current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -45966,8 +45966,8 @@ package android.view { method public boolean hasTransientState(); method public boolean hasWindowFocus(); method public static android.view.View inflate(android.content.Context, int, android.view.ViewGroup); method public void invalidate(android.graphics.Rect); method public void invalidate(int, int, int, int); method public deprecated void invalidate(android.graphics.Rect); method public deprecated void invalidate(int, int, int, int); method public void invalidate(); method public void invalidateDrawable(android.graphics.drawable.Drawable); method public void invalidateOutline();
api/system-current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -49664,8 +49664,8 @@ package android.view { method public boolean hasTransientState(); method public boolean hasWindowFocus(); method public static android.view.View inflate(android.content.Context, int, android.view.ViewGroup); method public void invalidate(android.graphics.Rect); method public void invalidate(int, int, int, int); method public deprecated void invalidate(android.graphics.Rect); method public deprecated void invalidate(int, int, int, int); method public void invalidate(); method public void invalidateDrawable(android.graphics.drawable.Drawable); method public void invalidateOutline();
api/test-current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -46506,8 +46506,8 @@ package android.view { method public boolean hasTransientState(); method public boolean hasWindowFocus(); method public static android.view.View inflate(android.content.Context, int, android.view.ViewGroup); method public void invalidate(android.graphics.Rect); method public void invalidate(int, int, int, int); method public deprecated void invalidate(android.graphics.Rect); method public deprecated void invalidate(int, int, int, int); method public void invalidate(); method public void invalidateDrawable(android.graphics.drawable.Drawable); method public void invalidateOutline();
core/java/android/view/View.java +12 −0 Original line number Diff line number Diff line Loading @@ -15529,7 +15529,13 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * {@code dirty}. * * @param dirty the rectangle representing the bounds of the dirty region * * @deprecated The switch to hardware accelerated rendering in API 14 reduced * the importance of the dirty rectangle. In API 21 the given rectangle is * ignored entirely in favor of an internally-calculated area instead. * Because of this, clients are encouraged to just call {@link #invalidate()}. */ @Deprecated public void invalidate(Rect dirty) { final int scrollX = mScrollX; final int scrollY = mScrollY; Loading @@ -15550,7 +15556,13 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * @param t the top position of the dirty region * @param r the right position of the dirty region * @param b the bottom position of the dirty region * * @deprecated The switch to hardware accelerated rendering in API 14 reduced * the importance of the dirty rectangle. In API 21 the given rectangle is * ignored entirely in favor of an internally-calculated area instead. * Because of this, clients are encouraged to just call {@link #invalidate()}. */ @Deprecated public void invalidate(int l, int t, int r, int b) { final int scrollX = mScrollX; final int scrollY = mScrollY;