Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java +6 −4 Original line number Diff line number Diff line Loading @@ -186,12 +186,14 @@ public abstract class ExpandableView extends FrameLayout implements Dumpable { * @param notifyListeners Whether the listener should be informed about the change. */ public void setActualHeight(int actualHeight, boolean notifyListeners) { if (mActualHeight != actualHeight) { mActualHeight = actualHeight; updateClipping(); if (notifyListeners) { notifyHeightChanged(false /* needsAnimation */); } } } public void setActualHeight(int actualHeight) { setActualHeight(actualHeight, true /* notifyListeners */); Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java +6 −4 Original line number Diff line number Diff line Loading @@ -186,12 +186,14 @@ public abstract class ExpandableView extends FrameLayout implements Dumpable { * @param notifyListeners Whether the listener should be informed about the change. */ public void setActualHeight(int actualHeight, boolean notifyListeners) { if (mActualHeight != actualHeight) { mActualHeight = actualHeight; updateClipping(); if (notifyListeners) { notifyHeightChanged(false /* needsAnimation */); } } } public void setActualHeight(int actualHeight) { setActualHeight(actualHeight, true /* notifyListeners */); Loading