当用户在棒棒糖及以上时,我想将windowTranslucentStatus设置为true,否则(至少在kitkat上)应用栏出现在系统栏内.在棒棒糖上它很好.没有为每个版本制作单独的styles.xml,显然你不应该再做了,我怎样才能在java中设置它?
我的mainActivity中有以下代码,但不知道hot windowTranslucentStatus ...有什么想法吗?
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
// set windowTranslucentStatus = true
}
Run Code Online (Sandbox Code Playgroud)