将数据从线程发送到活动
我正在创建一个应用程序,它是一种客户端多线程服务器。
我面临的问题是下一个:
服务器是多线程的,这意味着它在线程中接收来自客户端的数据(一个单独的类,不是活动的内部类),我想发送该数据数据到扩展活动的类!
这可能吗?如果是的话,怎么办?
感谢你!
更新:我的线程是一个工作线程,它实现了 Runnable,并且数据需要发送到扩展活动的不同类!
I'm creating an app that is a sort of client- multithreaded server.
The problem that I'm facing with is the next one:
The server is multithreaded and that means that it receives the data from the clients in a thread(a separate class which is not a inner class for an activity) and I wanna send that data to a class that extends activity!!!
Is that possible?And if yes,how??
Thank u!
UPDATE:My thread is a Worker thread it implements Runnable and the data needs to ne send to a different class that extends activity!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 Handler。
这篇文章可能会有所帮助。
Yes, you can send a Message from the thread back to the Activity using a Handler.
This article may be helpful.