[Solved] Update TextView from another Activity


I don’t think there is a good way to do this, as your first activity could get collected by the system, and you generally don’t want to do work after onPause has been called.

I would move that logic that updates the views into a service that runs in the background. Since it sounds like you only need this service while the application is running I would create a bound one.

http://developer.android.com/guide/components/services.html

1

solved Update TextView from another Activity