应用程序在android任务管理器中闪烁

时间:2015-05-29 19:15:06

标签: android android-fragments android-activity taskmanager

我最近注意到当我的应用程序出现在android"任务管理器"时出现了奇怪的闪烁。

似乎活动在导航栏顶部绘制了一小段时间然后被推回。 当其他应用程序打开时,我的应用程序会出现在所有其他应用程序前面,并且"闪烁"回来。

以下是一些截屏视频:

我的activity_main.xml布局文件实现了一个简单的导航抽屉,其空FrameLayout被当前片段替换:

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"

    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:background="@color/background_material_light"
    tools:context=".MainActivity">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <FrameLayout
            android:id="@+id/fragment_container_main"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="false" />

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            android:theme="@style/Widget.AppTheme.Toolbar"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

    </FrameLayout>

    <ScrimInsetsFrameLayout
        android:id="@+id/navigation_drawer_container"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        android:layout_gravity="start"
        android:background="?android:attr/colorBackground"
        app:insetForeground="@color/insetsForeground">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/navigation_drawer_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:choiceMode="singleChoice"
            android:scrollbars="vertical"
            android:divider="@null"
            android:dividerHeight="0dp"
            tools:context="NavDrawerAdapter" />

    </ScrimInsetsFrameLayout>

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

有没有人遇到过这个问题并知道如何解决它? 谢谢:))

1 个答案:

答案 0 :(得分:0)

好的,我刚刚发现了这个问题。这是由于我的窗口背景在我的应用程序主题中设置为@android:color/transparent

不知怎的,这使得整个活动在任务管理器中消失了。