Re: [android-developers] Cursor LifeCycle

2011-11-08 Thread Júlio Cesar Bueno Cotta
Dianne, thank you very much! 2011/11/8 Dianne Hackborn hack...@android.com If you are closing the cursor yourself, you really shouldn't be having the framework manage the cursor at all. I mean... the point of having the framework manage the cursor is for it to close it (and otherwise manage

[android-developers] Cursor LifeCycle

2011-11-07 Thread Júlio Cesar Bueno Cotta
Hi people, I think I need some help here. I did some search in the group and found this few topicshttps://groups.google.com/forum/#%21searchin/android-developers/startManagingCursor$20deprecatedabout my questions, so sorry if I am being silly. First, When should I close my Cursors? I always

Re: [android-developers] Cursor LifeCycle

2011-11-07 Thread Júlio Cesar Bueno Cotta
Can someone try to help me please? I really preciate if it happen. I am stuck with the Android documentation. Should I convert all my SQLite methods to use Content Providers? Thanks in advance. 2011/11/5 Júlio Cesar Bueno Cotta juliocbco...@gmail.com Hi people, I think I need some help here.

Re: [android-developers] Cursor LifeCycle

2011-11-07 Thread Dianne Hackborn
If you are closing the cursor yourself, you really shouldn't be having the framework manage the cursor at all. I mean... the point of having the framework manage the cursor is for it to close it (and otherwise manage it) for you. If you are then going to try to close it yourself, you then get