Longan icon indicating copy to clipboard operation
Longan copied to clipboard

全屏的实现是不是反了?

Open dotfeng opened this issue 1 year ago • 0 comments

inline var Activity.isFullScreen: Boolean get() = window.decorView.rootWindowInsetsCompat?.isVisible(WindowInsetsCompat.Type.systemBars()) == true set(value) { window.decorView.windowInsetsControllerCompat?.run { val systemBars = WindowInsetsCompat.Type.systemBars() if (value) show(systemBars) else hide(systemBars) } }

dotfeng avatar Jul 26 '24 03:07 dotfeng