Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
2k views

Android 3.0 - what are the advantages of using LoaderManager instances exactly?

With 3.0 we got the fancy LoaderManager, which handles data loading using AsyncTaskLoader/CursorLoader/some custom loader instances. But reading through the docs for these I just couldn't get the ...
5
votes
2answers
1k views

Usage CursorLoader without ContentProvider

Android SDK documentation says that startManagingCursor() method is depracated: This method is deprecated. Use the new CursorLoader class with LoaderManager instead; this is also available on ...
3
votes
1answer
251 views

How to transition from SimpleCursorAdapter to LoaderManager/CursorLoader?

I'm developing an Android application that is targeting API level 8 (2.2 "Froyo"). I'm using a ContentProvider and that's simple enough, and I'm using SimpleCursorAdapter to fill out my list view, but ...
3
votes
1answer
282 views

How to implement a CursorLoader for Android API level <11

I have an application with many list activities (5-6 of them), and all of them have custom cursor adapters, from my own ContentProvider(2), sitting on an Sqlite database(2). Now the problem, I want ...
2
votes
1answer
77 views

Return rows around my selection args (“surrounding rows”) in a database query

I'm querying a database in Android. The table is your ordinary table with values, nothing special. What I need: return the two events that happened before and after the given timestamp. Example: ...
2
votes
1answer
564 views

What does LoaderManager do?

I am trying to understand that what does loadermanager do. Can anyone share an example with it? Must I use them when I create a cursor? If not how should I use? A simple example is very appreciated.
2
votes
1answer
398 views

Problem with LoadManager

I am struggling to figure out why this codes work using the Honeycomb SDK but fails when using the compatibility library. Specifically, getLoaderManager().initLoader(0, null, this), works with the ...
1
vote
0answers
54 views

Android CursorLoader vs AsyncQueryHandler?

I have seen how to implement both a CursorLoader and a AsyncQueryHandler. If I wanted to use this for an Android 2.2 application for a SimpleCursorTreeAdapter, which one should I use?
1
vote
1answer
213 views

Multiple CursorLoader

I extend a my previous question, I resolve that issue but I have a new similar error. I have the following activity public class ActivityMatchesList extends FragmentActivity implements ...
1
vote
1answer
194 views

updating a listfragment from an activity

I am trying to update my listfragment when a button is pressed. the button puts a name into a database but how do I update the list so that name appears? the listfragment uses a cursorLoader to load ...
1
vote
1answer
53 views

How many Worker Threads can be created at most?

In my tablet app I use many Fragments (of one class) next to eachother in one activity, and in this Fragment class I have: public void onActivityCreated(Bundle savedInstanceState) { ...
1
vote
0answers
159 views

Paged list and CursorLoader

I need to implement paged list, that uses loader to get cursor from ContentProvider. I have footer and when user clicks it - i need to add next records to list. How can I refresh data in the list, ...
0
votes
1answer
58 views

CursorLoader not showing DB entires

I've got a CursorLoader in a ListFragment (that is inside a ViewPager) that queries a database. I have a content provider for that database, which I've verified works. The issue is this: when the ...
0
votes
1answer
69 views

Fragment with AsyncTaskLoader infulence other fragments' attaching to the activity

I've used AsyncTaskLoader to load a cursor from a database query. I followed Android Developers sample: http://developer.android.com/reference/android/content/AsyncTaskLoader.html But somehow the ...
0
votes
0answers
25 views

Fetching all images from SD card into fragment with gridview using cursorloader

I'm attempting to fetch all the images from the SD card and display them in a GridView. However, when I attempt to fetch them, I am told that the "image_id" column does not exist. This is displayed ...
0
votes
1answer
75 views

Getting SQLiteCursorLoader to observe data changes

I'm trying to implement a DataListFragment with an adapter that uses a Loader from Commonsware. This Loader uses a SQLiteDatabase directly and doesn't require the use of ContentProviders. The android ...
0
votes
2answers
165 views

Android CursorLoader not responding to ContentProvider notifications

I'm updating an Android 2.2 application to use CursorLoader (using the v4 compatibility library) and I'm tearing my hair out trying to understand why the onLoadFinished method is not called when the ...
0
votes
2answers
135 views

Must an activity or fragment have a separate loader for type of each database operation performed?

Seems the Google-recommended way (using the android support library) for a fragment or activity to interact with a sqlite database is via a loader that extends AsyncTaskLoader and works similar to the ...
0
votes
1answer
95 views

CursorLoader for Multiple ContentProviders

I need to make a ListAdapter that presents data from multiple ContentProviders. The ContentProviders themselves represent one table each from relational database. I want to use the CursorLoader ...
0
votes
2answers
163 views

Custom CursorLoader notify data change

I was looking at the answer for making a Custom CursorLoader, and was wondering that if the data changes would there will be a notification of the data changing so that the list updates?
0
votes
1answer
144 views

CursorLoader and Finalizing cursor that has not been deactivated or closed error

In my activity I have 2 CursorLoader and 2 TextView with a OnClickListener that calls the setScreen() method. Clicking the Textviews sometimes I have the error 11-29 15:27:26.045: ...
0
votes
1answer
336 views

CursorLoader not updating after data change

I have created a small application, trying to understand the functionality of the LoaderManager and CursorLoader-classes. I have implemented LoaderCallbacks<Cursor> on my FragmentActivity-class ...
0
votes
1answer
114 views

How to close database in Cursorloader

I'm currently working on ListViews in Fragments. The Listviews are loaded by Cursorloader, but without ContentManager. So the code looks like this and it works: @Override public Loader<Cursor> ...
0
votes
0answers
133 views

CursorAdapter and FLAG_REGISTER_CONTENT_OBSERVER

In my ListView Activity, using LoaderManager to manager cursor and also have a Custom CursorAdapter mAdapter = new CustomCursorAdapter(getActivity(), ...
0
votes
1answer
69 views

Using Loader em API version prior to 11

I am using a CursorAdapter and ContentProvider, and I want to use CursorLoader, so I reconfigured my project to target API 11 and set min-sdk-ver to 7. However it crashes when an Activity calls a ...
0
votes
2answers
601 views

CursorLoader and CursorTreeAdapter

I'm trying to use CursorLoader with a CursorTreeAdapter but am running into an issue I can't figure out. (If you have a working example of this, feel free to skip the rest and attach it below. I would ...
0
votes
2answers
195 views

Android Looper confusion

Android is complaining that the code below needs to call Looper.prepare. I have tried adding Looper.prepare but the code crashes after the sixth execution, leading me to believe that it wasn't as ...