Re: [android-developers] Update ListView items using a timer

2012-04-24 Thread Justin Anderson
You need to change the data in the adapter, and then call notifyDataSetChanged() on the adapter. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Apr 22, 2012 at 9:51 AM, Jbassking jbonav...@thebonavitas.comwrote: I have a ListView with a custom

[android-developers] Update ListView items using a timer

2012-04-22 Thread Jbassking
I have a ListView with a custom adapter. The adapter uses a custom object for it's data. I have a TextView that needs to be updated every few seconds using a timer so I added a Timer to my custom object and it sets the text on the TextView. The problem is that is TextView never reflects the change