Merge "Make TextView.isSingleLine public"
This commit is contained in:
committed by
Android (Google) Code Review
commit
5cf6abedcb
@@ -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();
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user