gpt4 book ai didi

android - 显示dialog fragment时被状态栏覆盖,仅限Android4.4

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:45:06 24 4
gpt4 key购买 nike

我的问题只发生在 Android 4.4 Kitkat 上,当我显示一个对话框 fragment 时,它的部分顶部将被状态栏覆盖。我该如何处理这个问题?这是 Kitkat 错误?

请看这里的截图:

enter image description here

谢谢

最佳答案

    Dialog choiceDialog = new Dialog(this);
choiceDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
Window window = choiceDialog.getWindow();
int y = findViewById(R.id.bannerview).getTop();
WindowManager.LayoutParams lp = window.getAttributes();
lp.y = y;
lp.dimAmount = 0;`enter code here`
lp.windowAnimations = android.R.anim.fade_in;
window.setAttributes(lp);
choiceDialog.setContentView(R.layout.conversation_action_dialog);

我这样做是为了显示对话框,但它不是对话框 fragment 可能对你有帮助

关于android - 显示dialog fragment时被状态栏覆盖,仅限Android4.4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21296564/

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