Android:导航抽屉列表使用SystemBarTint Lib重叠操作栏

时间:2014-08-19 18:56:45

标签: android android-actionbar navigation-drawer

我在我的应用程序中使用SystemBarTint库,我的导航抽屉列表是重叠的操作栏。

可在此处找到屏幕截图:https://imgur.com/uaGjbvN

请有人帮助我!

这是我的导航抽屉布局>>

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
 android:clipToPadding="false"
 >

<!-- The main content view -->

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:layout_marginLeft="@dimen/drawer_content_padding"
    android:clipToPadding="false"
android:fitsSystemWindows="true"/>

<!-- The navigation drawer -->

<ListView
    android:id="@+id/drawer"
    android:layout_width="@dimen/drawer_size"
    android:layout_height="match_parent"
    android:layout_gravity="start"

    android:choiceMode="singleChoice"
    android:divider="@android:color/transparent"
    android:dividerHeight="0dp" 
    android:background="#111"
    android:clipToPadding="false"
    />

    </android.support.v4.widget.DrawerLayout>

2 个答案:

答案 0 :(得分:1)

我有同样的问题,通过用“FrameLayout”包装我的抽屉活动来修复它 必须将这两行添加到framelayout:

android:fitsSystemWindows="true"
android:clipToPadding="false"

所以你的布局就像:

<FrameLayout 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"
android:clipToPadding="false">
..
..
..
<!--Your layout-->
</FrameLayout>

答案 1 :(得分:0)

在项目中删除此代码:

SystemBarTintManager tintManager = new SystemBarTintManager(this);
// enable status bar tint
tintManager.setStatusBarTintEnabled(true);
// enable navigation bar tint
tintManager.setNavigationBarTintEnabled(true);