Merge "Make TextView.isSingleLine public"

This commit is contained in:
TreeHugger Robot
2018-11-30 22:42:28 +00:00
committed by Android (Google) Code Review
2 changed files with 8 additions and 2 deletions

View File

@@ -55599,6 +55599,7 @@ package android.widget {
method public boolean isElegantTextHeight();
method public boolean isFallbackLineSpacing();
method public boolean isInputMethodTarget();
method public boolean isSingleLine();
method public boolean isSuggestionsEnabled();
method public boolean isTextSelectable();
method public int length();

View File

@@ -6254,8 +6254,13 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
return mHint;
}
@UnsupportedAppUsage
boolean isSingleLine() {
/**
* Returns if the text is constrained to a single horizontally scrolling line ignoring new
* line characters instead of letting it wrap onto multiple lines.
*
* @attr ref android.R.styleable#TextView_singleLine
*/
public boolean isSingleLine() {
return mSingleLine;
}