从运行应用程序中删除或隐藏浮动对话框活动

时间:2016-07-27 12:55:35

标签: android hide floating

我使用此代码将我的活动作为对话框

       <activity
        android:name=".activity.popup"
        android:taskAffinity=""
        android:theme="@style/Theme.AppCompat.Dialog"
        android:excludeFromRecents="true"
        android:noHistory="true"
        android:windowSoftInputMode="adjustResize|stateAlwaysHidden"
        tools:ignore="ExportedActivity">
       </activity>

我就像这样开始

        Intent window = new Intent(mContext, popup.class);

        window.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |Intent.FLAG_ACTIVITY_MULTIPLE_TASK|Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);  
        mContext.startActivity(window);

,结果是

enter image description here

但是为什么它会在运行应用程序时出现?

enter image description here

如何删除或隐藏它或其他任何东西阻止它在正在运行的应用程序中显示

0 个答案:

没有答案