无法引用覆盖类中的 Textview
当我点击屏幕时,我一直在尝试更新 TextView 字段。我已成功实现 Overlay 类,但无法从 Overlay 类中获取对 TextView 字段的引用。我已将“上下文”从我的活动类传递到覆盖类。 有哪些方法可以在覆盖类中获取对 Textview 的引用?
I have been trying to update a TextView field, when i Tap on the screen. I have implemented the Overlay class successfully, but I am unable to get a reference to the TextView field from the overlay class. I have passed 'context' from my activity class to overlay class.
What are the ways to get reference to the Textview in the overlay class ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有一些选择:
请记住,您无法从非 UI 线程修改 UI 元素。
问候。
You have some options:
Keep in mind that you can't modify an UI element from a non UI thread.
Regads.