发布者关闭了输入通道或发生错误。事件=0x8

发布于 2025-01-04 11:09:22 字数 289 浏览 2 评论 0原文

02-12 18:48:57.049: E/InputQueue-JNI(4659): 通道 '2be9da40 com.forwardapps.liveItems.LiveItemsService (client)' ~ 发布者关闭了输入通道或发生错误。 events=0x8

每当我将动态壁纸设置为背景时,我都会在 Ice Cream Sandwidth(ICS) 中收到此错误。它在所有其他版本的 Android 上运行良好。

有谁知道这里发生了什么或者他们可以解释一下吗?

02-12 18:48:57.049: E/InputQueue-JNI(4659): channel '2be9da40 com.forwardapps.liveItems.LiveItemsService (client)' ~ Publisher closed input channel or an error occurred. events=0x8

I'm getting this error in Ice Cream Sandwidth(ICS) whenever I set my livewallpaper as the background. It works fine on all other versions of android.

Does anyone know what's going on here or could they explain it?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

缱倦旧时光 2025-01-11 11:09:22

您是否真的发现了问题,或者只是被错误消息所困扰?我相信当输入事件管道的客户端因服务器关闭连接而失败时,会打印此消息。例如,如果您在 Activity 被销毁时没有关闭窗口,则可能会发生这种情况。

Are you actually seeing a problem, or just being troubled by the error message? This message is printed I believe when the client side of the input event pipe fails because the server has closed the connection. This could happen for example if you don't close a window when your activity is being destroyed.

夜未央樱花落 2025-01-11 11:09:22

在绘制画布的代码周围放置一个 try, catch 块。

更具体地说:

Canvas canvas = null;

    try {
        canvas = _surfaceHolder.lockCanvas(null);
        synchronized (_surfaceHolder) 
        {
            onDraw(canvas);
        }

        if(canvas != null)
        {
            _surfaceHolder.unlockCanvasAndPost(canvas);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }

Place a try, catch block around the code that draws the canvas.

More specifically:

Canvas canvas = null;

    try {
        canvas = _surfaceHolder.lockCanvas(null);
        synchronized (_surfaceHolder) 
        {
            onDraw(canvas);
        }

        if(canvas != null)
        {
            _surfaceHolder.unlockCanvasAndPost(canvas);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文