此问题仅在 and-6ren">
gpt4 book ai didi

java - Android 9.0 Activity 泄露了最初添加的窗口

转载 作者:行者123 更新时间:2023-11-30 01:41:52 25 4
gpt4 key购买 nike

我刚刚添加了 android:usesCleartextTraffic="true" 来支持 android 9.0 中的 volley,但加载完成后进度对话框窗口会泄漏。

NB> 此问题仅在 android 9 中出现。在其他 android 版本中也可以正常使用

enter image description here

最佳答案

请检查以下场景:

onStop() 方法当 Activity 不再可见时调用 Activity 周期,我们可以检查 mDialog 是否为 null。如果 mDialog 不为 null,则意味着您的 Activity 泄漏了窗口,因此您可以通过 onStop() 方法将其关闭。

@Override
protected void onStop() {
super.onStop();
if(mDialog!=null){
mDialog.dismiss;
}
}

希望这会有所帮助!

关于java - Android 9.0 Activity 泄露了最初添加的窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59663436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com