android 应用程序线程内的 invalidate()
我是机器人编程新手,但我在黑莓编程方面有相当多的经验。
我创建了一个具有活动类 (main.java) 和视图类 (game.java) 的应用程序。
在视图类中,我有一些位图被绘制到屏幕上。我创建了一个线程,并在线程中移动图像。但是,当我在线程内调用 invalidate() 时,它永远不会重绘屏幕。
您无法从线程中使屏幕无效吗?我知道线程正在运行并且正在调用 invalidate,它只是永远不会在屏幕上进行更改。
I'm new to programming androids but I have quite a bit of experience programming blackberries.
I created an app that has an activity class (main.java) and a view class (game.java).
Inside the view class I have some bitmaps being drawn to the screen. I created a thread and I'm moving the images around in the thread. However when I call invalidate() inside the thread it never redraws the screen.
Are you not able to invalidate() the screen from a thread? I know the thread is running and the invalidate is being called, it just never makes the changes on the screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 View.postInvalidate()如果您从非 UI 线程调用它。
根据文档:
You have to use View.postInvalidate() if you call it from a non-UI thread.
According to docs: