Okay, so after investigating problem a little bit more, I found that this
problem only applies to Android 4.0.x. This bug doesn't exist in 2.2, 2.3
or 4.1, only 4.0. The only way for me to solve this bug is to add to
onLoadFinished()


getListView().setVisibility(View.GONE);

getListView().setVisibility(View.VISIBLE);

I don't find it elegant way, bu maybe you will have some ideas.

Thanks for all answers,

Jacek


2012/10/20 Jacek Jabłoński <[email protected]>

> For me, even invalidate() doesn't work. It's strange.
>
>
> 2012/10/20 Andrew Mackenzie <[email protected]>
>
>>  I've also had problems getting notify to work, and resorted to using
>> "invalidate()" (I think that's the name, but which from memory maybe
>> deprecated??) and even just detecting that change in my List Activity and
>> doing the query for the cursor again.
>>
>> I'm pretty sure there is a more recommended, elegant, way of doing this
>> (notify()!) but I haven't found one yet that works reliably.
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to [email protected]
>> To unsubscribe from this group, send email to
>> [email protected]
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>>
>
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to