[android-developers] Re: Keeping views in sync on model change

2015-01-19 Thread Grunthos
On Friday, January 16, 2015 at 8:30:18 AM UTC+11, Nathan Barraille wrote: > >- Go the way I think the Android framework is supposed to work, and > notify change on all content URIs whenever a track has changed. This will > force the loader to re-run and refresh data from the database. > This

[android-developers] Re: Keeping views in sync on model change

2015-01-20 Thread Nathan Barraille
Thanks for your answer Grunthos. I thought about using an abstract Adapter and inheritance to be as DRY as possible, but more than DRYness I guess, I'm just thinking that I shouldn't have to worry about this when writing the adapter, and this is a common problem that should be handled by the fr