Android - 开发实例(14):透明SystemBar

最近国内的手机ROM(MIUI, Flyme等)都升级了Android 4.4,预测下半年国内APP 会有很多使用Android4.4特性。
Android 4.4可以支持StatusBar和NavigationBar透明了,记录一下相关代码。

透明StatusBar和NavigationBar

Window win = getWindow();
WindowManager.LayoutParams winParams = win.getAttributes();
winParams.flags |= WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS;
winParams.flags |= WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION;
win.setAttributes(winParams);
或者

透明ActionBar(MEIZU SmartBar) ---------- style.xml



    

    

    

代码:https://github.com/gavinliu/TransparentSystemBar

Android - 开发实例(14):透明SystemBar_第1张图片

Android - 开发实例(14):透明SystemBar_第2张图片


你可能感兴趣的:(Android,Notes,Android,开发实例)