Loading api/current.txt +0 −1 Original line number Diff line number Diff line Loading @@ -24862,7 +24862,6 @@ package android.view { method public long getDrawingTime(); method public boolean getFilterTouchesWhenObscured(); method public boolean getFitsSystemWindows(); method public void getFocusRect(android.graphics.Rect); method public java.util.ArrayList<android.view.View> getFocusables(int); method public void getFocusedRect(android.graphics.Rect); method public boolean getGlobalVisibleRect(android.graphics.Rect, android.graphics.Point); core/java/android/view/FocusFinder.java +1 −1 Original line number Diff line number Diff line Loading @@ -228,7 +228,7 @@ public class FocusFinder { if (focusable == focused || focusable == root) continue; // get focus bounds of other view in same coordinate system focusable.getFocusRect(mOtherRect); focusable.getFocusedRect(mOtherRect); root.offsetDescendantRectToMyCoords(focusable, mOtherRect); if (isBetterCandidate(direction, focusedRect, mOtherRect, mBestCandidateRect)) { Loading core/java/android/view/View.java +1 −13 Original line number Diff line number Diff line Loading @@ -8708,18 +8708,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } /** * When searching for a view to focus this rectangle is used when considering if this view is * a good candidate for receiving focus. * * By default, the rectangle is the {@link #getDrawingRect}) of the view. * * @param r The rectangle to fill in, in this view's coordinates. */ public void getFocusRect(Rect r) { getDrawingRect(r); } /** * Utility method to retrieve the inverse of the current mMatrix property. * We cache the matrix to avoid recalculating it when transform properties Loading Loading @@ -9698,7 +9686,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * When a view has focus and the user navigates away from it, the next view is searched for * starting from the rectangle filled in by this method. * * By default, the rectange is the {@link #getDrawingRect(android.graphics.Rect)}) * By default, the rectangle is the {@link #getDrawingRect(android.graphics.Rect)}) * of the view. However, if your view maintains some idea of internal selection, * such as a cursor, or a selected row or column, you should override this method and * fill in a more specific rectangle. Loading Loading
api/current.txt +0 −1 Original line number Diff line number Diff line Loading @@ -24862,7 +24862,6 @@ package android.view { method public long getDrawingTime(); method public boolean getFilterTouchesWhenObscured(); method public boolean getFitsSystemWindows(); method public void getFocusRect(android.graphics.Rect); method public java.util.ArrayList<android.view.View> getFocusables(int); method public void getFocusedRect(android.graphics.Rect); method public boolean getGlobalVisibleRect(android.graphics.Rect, android.graphics.Point);
core/java/android/view/FocusFinder.java +1 −1 Original line number Diff line number Diff line Loading @@ -228,7 +228,7 @@ public class FocusFinder { if (focusable == focused || focusable == root) continue; // get focus bounds of other view in same coordinate system focusable.getFocusRect(mOtherRect); focusable.getFocusedRect(mOtherRect); root.offsetDescendantRectToMyCoords(focusable, mOtherRect); if (isBetterCandidate(direction, focusedRect, mOtherRect, mBestCandidateRect)) { Loading
core/java/android/view/View.java +1 −13 Original line number Diff line number Diff line Loading @@ -8708,18 +8708,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } /** * When searching for a view to focus this rectangle is used when considering if this view is * a good candidate for receiving focus. * * By default, the rectangle is the {@link #getDrawingRect}) of the view. * * @param r The rectangle to fill in, in this view's coordinates. */ public void getFocusRect(Rect r) { getDrawingRect(r); } /** * Utility method to retrieve the inverse of the current mMatrix property. * We cache the matrix to avoid recalculating it when transform properties Loading Loading @@ -9698,7 +9686,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * When a view has focus and the user navigates away from it, the next view is searched for * starting from the rectangle filled in by this method. * * By default, the rectange is the {@link #getDrawingRect(android.graphics.Rect)}) * By default, the rectangle is the {@link #getDrawingRect(android.graphics.Rect)}) * of the view. However, if your view maintains some idea of internal selection, * such as a cursor, or a selected row or column, you should override this method and * fill in a more specific rectangle. Loading