Updating data from one activity to another

3

I am making a android application that uses telnet communication and receives data every second ( ActivityTelnet ). I would like to treat some of this data in another activity ( Activity1 ). However, when I am in Activity1 I do not know how to continue receiving the update of this data, I do not even know if it is possible. Can anyone tell me?

    
asked by anonymous 18.08.2015 / 16:30

1 answer

3

It is possible to use a BroadcastReceiver or force content to the other activity through an Intent.

link

link

    
18.08.2015 / 22:26