Merge "Rename isHorizontallyScrolling to isHorizontallyScrollable"

This commit is contained in:
Haoyu Zhang
2019-01-23 19:37:18 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -56847,7 +56847,7 @@ package android.widget {
method public boolean isCursorVisible();
method public boolean isElegantTextHeight();
method public boolean isFallbackLineSpacing();
method public final boolean isHorizontallyScrolling();
method public final boolean isHorizontallyScrollable();
method public boolean isInputMethodTarget();
method public boolean isSingleLine();
method public boolean isSuggestionsEnabled();

View File

@@ -5117,7 +5117,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
* @attr ref android.R.styleable#TextView_scrollHorizontally
* @see #setHorizontallyScrolling(boolean)
*/
public final boolean isHorizontallyScrolling() {
public final boolean isHorizontallyScrollable() {
return mHorizontallyScrolling;
}