Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5cf6abed authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Make TextView.isSingleLine public"

parents 950c469c 15325711
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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();
+7 −2
Original line number Diff line number Diff line
@@ -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;
    }