diff options
| author | 2019-06-17 19:03:59 -0700 | |
|---|---|---|
| committer | 2019-06-19 16:13:53 -0700 | |
| commit | b0fada6ca022c156064c2abf9476a6a2350e1e83 (patch) | |
| tree | 54c9c03dccba07b39064df73599fd089e6a0d572 /packages/SystemUI/plugin | |
| parent | f89a5dc93f7fca14af9945d5dbef0597c47b1cee (diff) | |
Changing the lockscreen layout for the bypass
The notifications are now on the top and the user
can drag down to the full shade from there directly.
The quick settings header also comes down while
expanding from the pulse.
Bug: 130327302
Change-Id: I488f90aacd5912eda6f9423dc76862f06230d793
Diffstat (limited to 'packages/SystemUI/plugin')
| -rw-r--r-- | packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/QS.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/QS.java b/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/QS.java index 30d1352c8a01..85a9fec859f3 100644 --- a/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/QS.java +++ b/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/QS.java @@ -34,7 +34,7 @@ public interface QS extends FragmentBase { String ACTION = "com.android.systemui.action.PLUGIN_QS"; - int VERSION = 6; + int VERSION = 7; String TAG = "QS"; @@ -51,7 +51,7 @@ public interface QS extends FragmentBase { void setListening(boolean listening); boolean isShowingDetail(); void closeDetail(); - void setKeyguardShowing(boolean keyguardShowing); + default void setShowCollapsedOnKeyguard(boolean showCollapsedOnKeyguard) {} void animateHeaderSlidingIn(long delay); void animateHeaderSlidingOut(); void setQsExpansion(float qsExpansionFraction, float headerTranslation); |