为什么我的DrawerLayout抽屉头不能到达状态栏下?

时间:2015-06-22 16:17:28

标签: android drawerlayout drawer

为什么我的DrawerLayout抽屉标题无法到达状态栏下?

这是mytheme:

UINavigationController

我的抽屉视图定义:

<!-- Application theme. -->
<style name="AppTheme" parent="AppTheme.Base">

    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <!-- Status bar color -->
    <item name="android:statusBarColor">@color/base_color_half</item>

    <item name="android:windowTranslucentNavigation">true</item>
    <!-- Navigation bar color -->
    <item name="android:navigationBarColor">@color/base_color_half</item>
</style>

抽屉背景是白色的,我添加了一个linearlayout作为标题,然后我得到了这个问题..

对不起,我无法在我的关卡上传图片。

1 个答案:

答案 0 :(得分:1)

由于状态栏是系统窗口的一部分,因此将fits属性设置为false:

android:fitsSystemWindows="false"