Fixed build breakage
Build was broken due to refactoring in master Test: build Change-Id: Ic455c504bc1dab56da3630073245b8391614f042
This commit is contained in:
@@ -31,7 +31,7 @@ public abstract class QSContainer extends FrameLayout {
|
||||
|
||||
// This should be incremented any time this class or ActivityStarter or BaseStatusBarHeader
|
||||
// change in incompatible ways.
|
||||
public static final int VERSION = 1;
|
||||
public static final int VERSION = 2;
|
||||
|
||||
public QSContainer(@NonNull Context context, @Nullable AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
@@ -40,6 +40,7 @@ public abstract class QSContainer extends FrameLayout {
|
||||
public abstract void setPanelView(HeightListener notificationPanelView);
|
||||
public abstract BaseStatusBarHeader getHeader();
|
||||
|
||||
public abstract void hideImmediately();
|
||||
public abstract int getQsMinExpansionHeight();
|
||||
public abstract int getDesiredHeight();
|
||||
public abstract void setHeightOverride(int desiredHeight);
|
||||
|
||||
@@ -335,6 +335,7 @@ public class QSContainerImpl extends QSContainer {
|
||||
return mHeader.getHeight();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void hideImmediately() {
|
||||
animate().cancel();
|
||||
setY(-mHeader.getHeight());
|
||||
|
||||
Reference in New Issue
Block a user