Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a simple Android application that has a ActivityList of information, when the application starts, I plan to start a Service that will be constantly calculating the data (it will be changing) and I want the ActivityList to be in sync with the data that the service is calculating for the life of the app.

How can I set up my Activity to be listening to the Service? Is this the best way to approach this problem?

For example, if you imagine a list of stock prices - the data would be being changed regularly and need to be in sync with the (in my case) Service that is calculating/fetching the data constantly.

Thanks in advance

share|improve this question

4 Answers

up vote 49 down vote accepted

How can I set up my Activity to be listening to the Service? Is this the best way to approach this problem?

You have three major options, as I see it:

  1. Polling. The Activity periodically asks the Service for the latest data. IMHO, this option sucks, but it's certainly possible.

  2. Callbacks. Per jax's answer, the Activity registers a callback object ("observer") with the Service. The Service invokes a method on the callback when the data changes, which in turn updates the UI. You can see an example of using that with a Service here.

  3. Broadcast Intents. The Service broadcasts an Intent via sendBroadcast() on a data change. The Activity registers a BroadcastReceiver using registerReceiver(), and that BroadcastReceiver is notified of an incoming broadcast. This triggers the Activity to load the latest data from the Service, or possibly just to get the latest data out of extras in the broadcast Intent. You can see an example of using that technique with a Service here.

share|improve this answer
7  
Great example of number 3 here ... websmithing.com/2011/02/01/… – Steven Elliott May 9 '11 at 14:16
1  
What if i closed the application. How can i handle the case of running AlarmManager with Status Activity. – Basbous Apr 26 '12 at 9:16
What are the pro and cons of techniques 2 and 3? – resus Apr 15 at 14:49
1  
@resus: #2 requires binding, which introduces more "state" and makes activity configuration changes more challenging. #3, as written, is truly broadcast to the whole device. In the three years since this answer was written, other options have been added. I would recommend that you consider LocalBroadcastManager from the Android Support package (like #3, but private to your app) or using the Otto event bus: square.github.io/otto – CommonsWare Apr 15 at 15:10
@CommonsWare: Perhaps would it be good to update the answer with those new infos? After exploring LocalBroadcastManager solution I ended up using the old observer pattern #2. I would add for #2: Easier to exchange complex obects as they don't need to be serializable or parcelable. – resus Apr 16 at 12:17

This sound like a good candidate for the Observer Pattern. Basically your activity (The Observer) will register itself with the background service (The Observable) and you can push or pull data from your Activity. Your Observer in this case will be your Activity and the Observable will be your Service.

If you know nothing about Design Patterns buy "Head First Design Patterns", it is easy to read and is full of great information.

PS: I am reading it now.

share|improve this answer
3  
You are right but this answer is in no way android specific... – Janusz Mar 18 '10 at 10:46

You will have a background thread running that calculates the changes in the list. This thread now needs a possibility to notify the GUI that the list was updated.

You can use some kind of ArrayAdapter to get the data into the ListView. The ArrayAdapter has a method called adpater.notifyDataSetChanged() every time you call this method the adapter will see that the corresponding data has changed and then notify the listview that it should update at the next possibility.

share|improve this answer
2  
Better yet, if you are going to use ArrayAdapter, just call the add(), insert(), and remove() methods on ArrayAdapter to change its contents. You do not need notifyDataSetChanged() then. – CommonsWare Mar 18 '10 at 12:05

@Steven: I have used your example and it works really well. Thank you so much for that. I just have one question, like you displayed counter and time. I want to display array of boolean values and when I use it intent.putExtra("extra", Array.getBoolean(arrBool, i)); in BroadcastService.java and

textview.setText(arrBool) in BroadcastTest.java. It just shows one value either true or false. How can I show all the values from an array? I'd really appreciate if you would help me with this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.