Loading core/java/android/widget/TextView.java +6 −4 Original line number Diff line number Diff line Loading @@ -9443,12 +9443,14 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener public void onRtlPropertiesChanged(int layoutDirection) { super.onRtlPropertiesChanged(layoutDirection); mTextDir = getTextDirectionHeuristic(); final TextDirectionHeuristic newTextDir = getTextDirectionHeuristic(); if (mTextDir != newTextDir) { mTextDir = newTextDir; if (mLayout != null) { checkForRelayout(); } } } TextDirectionHeuristic getTextDirectionHeuristic() { if (hasPasswordTransformationMethod()) { Loading Loading
core/java/android/widget/TextView.java +6 −4 Original line number Diff line number Diff line Loading @@ -9443,12 +9443,14 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener public void onRtlPropertiesChanged(int layoutDirection) { super.onRtlPropertiesChanged(layoutDirection); mTextDir = getTextDirectionHeuristic(); final TextDirectionHeuristic newTextDir = getTextDirectionHeuristic(); if (mTextDir != newTextDir) { mTextDir = newTextDir; if (mLayout != null) { checkForRelayout(); } } } TextDirectionHeuristic getTextDirectionHeuristic() { if (hasPasswordTransformationMethod()) { Loading