随机关闭应用程序 - InputManagerService:收到 RemoteException 发送 setActive(false) 通知

发布于 2024-09-08 07:22:33 字数 421 浏览 3 评论 0原文

我有一个非常简单的 Android 应用程序,类似于 Fingerpaint 应用程序。我是 用手指在屏幕上画一些线条。

我的问题是,应用程序随机关闭自己,让我回到 安卓主屏幕。

我在 LogCat 上看到的唯一日志是这一行:

(Warning) Tag: InputManagerService: Got RemoteException sending setActive(false) notification to pid 4962 uid 10077.

没有抛出异常。

我尝试过针对 Android 2.0、2.1 和 2.2 编译项目...

我尝试在清单中禁用可调试属性。

我在 Nexus One 和 2.2 模拟器上都遇到这个问题。

I've a very simple Android app, similar to fingerpaint application. I'm
drawing some lines on the screen with my finger.

My problem is that, app closes itself randomly, taking me back to
Android home screen.

Only log I can see on LogCat is that line:

(Warning) Tag: InputManagerService: Got RemoteException sending setActive(false) notification to pid 4962 uid 10077.

No exception is thrown.

I've tried compiling project against Android 2.0, 2.1 and 2.2...

I've tried disabling debuggable attribute in manifest.

I'm having this problem on both Nexus One and 2.2 Emulator.

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

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

发布评论

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

评论(1

久夏青 2024-09-15 07:22:33

我的问题是从 2 个不同的线程绘制 Canvas 对象。

我正在研究 Android 的 FingerPaint.java SDK 示例,它在 onTouchEvent 中访问 Canvas。不过,我还在我的动画线程中使用 SurfaceView 并在 Canvas 上绘图。

因此,从 onTouchEvent(主应用程序线程) 中删除 Canvas 对象访问解决了我的问题

谢谢。

My problem was drawing on Canvas object from 2 different threads.

I was playing around Android's FingerPaint.java SDK sample and it's accessing Canvas within onTouchEvent. However I was also using SurfaceView and drawing on Canvas within my animation thread.

Therefore removing Canvas object access from onTouchEvent(main app thread) solved my problem.

Thanks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文