随机关闭应用程序 - InputManagerService:收到 RemoteException 发送 setActive(false) 通知
我有一个非常简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的问题是从 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.