Notify activity from service

后端 未结 4 1054
予麋鹿
予麋鹿 2020-11-28 04:10

I\'m trying to start a Service from my Activity to look out for changes on a web page, it\'s a private app so I don\'t bother the battery life...

相关标签:
4条回答
  • 2020-11-28 04:56

    One more alternative: if your service updates content provider, activity can be notified via ContentObserver. This would be enough if your service downloads some data from server and you simply want to display fresh contents in the activity.

    0 讨论(0)
  • 2020-11-28 05:03

    As Alex indicated, you can bind to the service and pass some sort of listener or callback to the service to use on events.

    Or, you can use a broadcast Intent, perhaps using methods like setPackage() on the Intent to limit the scope of the broadcast.

    Or, you can use createPendingResult() to create a PendingIntent that you pass as an Intent extra to the service -- the service can then use that PendingIntent to trigger onActivityResult() in your activity.

    Or, you can use a ResultReceiver.

    Or, you can use a Messenger.

    (admittedly, I have not tried those latter two approaches, but I think they will work here)

    0 讨论(0)
  • 2020-11-28 05:12

    Some ugly ways:

    1.) If the activity has not started yet, then use intent and startActivity, but remember intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

    2.) Otherwise if the activity has started already, you can write your own callback method in the activity and register the method in the service, then direct call the method in the service.

    Hope to find some smart way.

    I think broadcast also work well, you can write a static inner class for receive broadcast and start activity. But it is also ugly in my opinion.

    0 讨论(0)
  • 2020-11-28 05:14

    The ResultReceiver mechanism has been explained in another post :- Restful API service However it would not work in all cases. Please refer to my comment on that post. The limited scope broadcast or PendingIntent mechanism seem more suitable.

    0 讨论(0)
提交回复
热议问题