SYSTEM_TYPE_ALERT 中的 ScrollView 模糊

发布于 2025-01-02 13:33:16 字数 581 浏览 1 评论 0原文

我有一个 Android 应用程序,它显示来自服务的系统警报:

WindowManager.LayoutParams params = new WindowManager.LayoutParams(WindowManager.LayoutParams.FILL_PARENT, WindowManager.LayoutParams.FILL_PARENT,
                WindowManager.LayoutParams.TYPE_SYSTEM_ALERT, WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM, PixelFormat.OPAQUE);

((WindowManager) getSystemService(WINDOW_SERVICE)).addView(view, params);

我已将视图设置为 GridView、可滚动 TextView 和 Gallery,如果我将图像/文本混合在一起滚动,则在所有这些视图上。一切都模糊在一起。就好像新的图像/文本被绘制在屏幕上,但旧的图像/文本没有被删除。知道如何解决这个问题吗?有谁有内容可滚动的 TYPE_SYSTEM_ALERT 示例吗?

I have an android app that displays an system alert from a service:

WindowManager.LayoutParams params = new WindowManager.LayoutParams(WindowManager.LayoutParams.FILL_PARENT, WindowManager.LayoutParams.FILL_PARENT,
                WindowManager.LayoutParams.TYPE_SYSTEM_ALERT, WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM, PixelFormat.OPAQUE);

((WindowManager) getSystemService(WINDOW_SERVICE)).addView(view, params);

I have set view to a GridView, Scrollable TextView, and a Gallery and on all of them if I scroll the images/text blend together. Everything is blurred together. It is as if the new image/text is drawn on the screen but the old image/text is not removed. Any idea on how to fix this? Does anyone have an example of a TYPE_SYSTEM_ALERT where the content is scrollable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文