blob: 9c7fbe8842bcd96f7a4a66cdd461879e3fa66655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package com.android.systemui.plugins.qs
interface QSContainerController {
fun setCustomizerAnimating(animating: Boolean)
fun setCustomizerShowing(showing: Boolean) = setCustomizerShowing(showing, 0L)
fun setCustomizerShowing(showing: Boolean, animationDuration: Long)
fun setDetailShowing(showing: Boolean)
}
|