在 KitKat以上版本中使用Translucent将Navigation Bar透明化
Android 从 4.4(KitKat) 开始提供了一个视觉上的提升,让最上方的状态栏 (Status Bar) 以及最下方的导航栏 (Navigation Bar) 可以被透明化,并让 APP 的内容可以往上下延伸,使整个画面的可被利用度大幅提升。
从 3.0 (honeycomb) 开始,Navigation Bar采用虚拟键,一直都占据一块不小的空间,对很多人来说,整个屏幕无法充利用,是一件相当痛苦的事情。也因此,有些人会刻意去挑选仍维持着实体键设计的手机。
而 Google 似乎也意识到这个状况,从 4.4 (KitKat) 提供了开发者一个新的作法,让我们可以把导航栏 (Navigation Bar)给透明化,并让内容延伸到该处,甚至是状态列 (Status Bar) 也可以被设定透明,这样再搭配 Action Bar 的配色,可以像上图一般,让整个 APP 更显得一致。
那我们就看看是如何实现的吧:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { Window window = getWindow(); // Translucent status bar window.setFlags( WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS, WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); // Translucent navigation bar window.setFlags( WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION, WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); }
的确,代码就是这么短,一行设定Status Bar、一行设定Navigation Bar 。
别忘了判断一下版本。确保4.4以下不会报错。
再来,有个部份要稍微留意一下,如果不希望 APP 的内容被上拉到状态列 (Status bar) 的话,要记得在介面 (Layout) XML 档中,最外面的那层,要再加上一个属性 fitsSystemWindows为true ,请见下方
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" tools:context=".MainActivity" > <!-- Content --> </RelativeLayout>
在界面的根层加入 android:fitsSystemWindows=”true” 这个属性,这样就可以让内容界面从 Action Bar 下方开始。
再来,若我们的 APP 可以从 4.4 (KitKat) 开始支持,那其实可以直接从 style 去进行设定,我们可以在官网上看到对透明化的说明里,官方提供了两种 no title 的主题风格可以让我们使用,分别如下
Theme.Holo.Light.NoActionBar.TranslucentDecor
Theme.Holo.NoActionBar.TranslucentDecor
这样我们就可以做出全屏幕的APP。
如果我们希望可以维持Action Bar的存在,那只需要继承一般的主题,并在主题中分别加入两个属性值即可
<style name="AppTheme" parent="AppBaseTheme"> <!-- Status Bar --> <item name="android:windowTranslucentStatus">true</item> <!-- Navigation Bar --> <item name="android:windowTranslucentNavigation">true</item> </style>
跟java代码方式一样,也是两行完成,上面一行是设定Status Bar、下面一行是设定Navigation Bar 。别忘了,如果不希望内容被 Action Bar 压住,那先前提及的 Layout 属性 android:fitsSystemWindows=”true” 要设置到。
其实以现在的状况来说,通过java代码方式去设定是最安全的,毕竟目前绝大部份的装置都还未被升级到 4.4 (KitKat)。