[android-developers] Managed Cursor

2008-04-21 Thread Flik
What can cause an activity to stop managing a cursor or a managedCursor to not update onReststart or a managed cursor to not be notified of an update? I seem to having this problem when I change activities with startActivity or startSubActivity. --~--~-~--~~~---~--~

[android-developers] Managed cursor loses position

2009-05-18 Thread Mariano Kamp
Hi, I have the issue that when a user moves away from my activity and comes back later I lost the position in my cursor. In onPause() cursor.getPostion() returns something >= 0, in onResume() cursor.getPosition() returns -1. When skipping startManagingCursor() [1] it works as expected. How

[android-developers] Managed Cursor, Providers, and Exceptions

2009-07-28 Thread Al Sutton
I keep hitting something which makes me wonder if I'm doing something wrong. I have a few Activities, each of which has a ExpandableList and a ResourceCursorTreeAdapter which is given a cursor from Activity.managedQuery when the adapter is created in the onCreate method of the activity. There is