简体   繁体   中英

send data from a thread to an activity

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!!!

Yes, you can send a Message from the thread back to the Activity using a Handler . This article may be helpful.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM