A loader that queries the `ContentResolver` and returns a `Cursor`. This class implements the `Loader` protocol in a standard way for querying cursors, building on `AsyncTaskLoader` to perform the cursor query on a background thread so that it does not block the application's UI.

learn more… | top users | synonyms (1)

0
votes
1answer
11 views

CursorLoader change cursor() doesn't refresh listview

I use approach resuest to server - listView - content provider in many projects and it works well. However I faced with really strange issue - notifyChange(uri, null) doesn;t refresh data in listview ...
0
votes
0answers
11 views

managing loader id uniqueness

I'm finding that my CursorLoader callbacks are getting mixed up cursors. The problem seems to be that Fragment.getLoaderManager() is the same loader id scope as ...
1
vote
0answers
29 views

How to display phone contacts only (exclude SIM contacts)

I'm building an UI where I need to show a list of phone contacts in a list view. I'm using ContactsContract.Data and the CursorLoader to load the data and then binding the cursor to a custom ...
2
votes
1answer
69 views

How to count the records in a Sqlite table that match a date restriction?

I'm using a CursorLoader to return a record count from my Content Provider, and I need to count only those records that are 7 or fewer days old. My attempts to make this work have so far yielded ...
0
votes
0answers
51 views

Using AutoCompleteTextView with sqlite database?

I wanted to use Autocomplete functionality in my application.I have a table with 4000 rows of data in it. How can I use CursorLoader for implementing AutoCompleteTextView .
0
votes
1answer
65 views

Show Progress Indicator before fill listview using CursorLoader

What better way to show a progress indicator while my listview is not filled with data of database? I found some examples of how to do this, using assynctask, but in my case, I am using Loader ...
0
votes
1answer
47 views

CursorLoader with Cursor accsss inside a loop

I'm building a ListView, and each item in the ListView has data from several different Cursors. I've got an object which holds all the data for each item in the ListView. I'm using an ArrayList of ...
0
votes
2answers
32 views

Extending SimpleCursor Adapter

I'm new to android development and i was looking for simplest explanation for using the SimpleCursorAdapter class with a cursorloader for pulling out Video Thumbnails and details from my android ...
1
vote
1answer
206 views

Pagination with filtering using CursorLoader, AutocompleteTextView, CursorAdapter, ContentProvider in android

Colleagues! I've got some trouble when using CursorLoader. I want to download data from inet API page by page. 1th feature - I also want to make pagination of the listview. It means that data should ...
0
votes
0answers
110 views

CursorLoader problems IllegalStateException, SQLiteMisuseException and IndexOutOfBoundsException

Good day guys, could someone help me with my super weirdo problem ? I've three fragments with CursorLoader in two different activities, each one have their contentprovider and share sqliteopenhelper. ...
0
votes
1answer
38 views

Why doesn't the notification URI work for a MergeCursor?

Suppose you have a CONTENT_URI inside your ContentProvider in which you want to do some complex stuff and return a combination of Cursors (MergeCursor) instead of a simple, single Cursor. It so ...
2
votes
1answer
145 views

How do CursorLoader automatically updates the view even if the app is inactive?

I have been working on a small To-Do list app. I used CursorLoader to update the ToDolistview from a content provider. I have a written a function onNewItemAdded(), which is called when user enters a ...
0
votes
1answer
123 views

ViewPager. Getting wrong cursor in SimpleCursorAdapter

I am getting a pretty strange error(situation). I use ViewPager and FragmentStatePagerAdapter with many ListFragment (one for each record in sqlite database). Each ListFragment implements ...
0
votes
1answer
46 views

How to close a database used within a ContentProvider in Android

I'm loading the contents of a database into a GridView using a CursorLoader and a ContentProvider. The application is working but in the log is writen serveral times "close() was never explicity ...
0
votes
2answers
100 views

Android application crashes on starting an Activity with message 'FATAL EXCEPTION: Async #3'

I am trying to make an application where I need to generate a ListView with data retrieved from a SQLite database. But as soon as an activity is initiated which does the above task, the application ...
0
votes
1answer
71 views

Sqlite_Content Provider assistant

I am trying to get my ListView to refresh by using a Content Provider. I have created my Provider and have tried to link it propelry to my SqlLite DB. Once I have my provider completed I will ...
1
vote
2answers
50 views

Updating the cursor manually by adding an item at a given index

I want to insert an item (and even null) into a cursor at a particular index. For example, I need to display 5 rows of information, but my query will get me a cursor with only 3 records, thus I need ...
2
votes
2answers
123 views

Multiple fragments accessing same database simultaneously

I happen to have more than one fragments in my activity, all of them are tied to CursorLoaders to fetch data from the Content Providers. All the fragments happen to query the same table but are ...
0
votes
1answer
128 views

Is it necessary to implement both LoaderCallbacks and OnLoadCompleteListener to get notifications of changes in a ContentProvider?

I have an application which is using Loaders to get at a database which is also being edited by an IntentService. I receive data from the Loader through a LoaderCallbacks implementation, which is ...
0
votes
0answers
50 views

broadcastreceiver for calendar events

I'm using a CursorLoader to edit my events created in Google Agenda, how can i update my listview of events if an event is changed from the Google Agenda. I tried using a Braodcast receiver but it is ...
0
votes
0answers
70 views

Android CursorLoader returning more than just projected columns

I'm using CursorLoader to query phone numbers from the contacts database. My query looks like (some of the values are dynamically generated, but it looks like this): projection = new String[] { ...
2
votes
1answer
254 views

Using CursorLoader to get emails causes duplication of emails

I am trying to get email ids of uses contacts. For that I am using Cursor Loader. There is one problem I am getting duplicate email ids also. How to remove email duplicacy. Should I use raw query ...
0
votes
0answers
90 views

How to implement Header in a ListFragment with CursorLoader

Trying to put a header in a ListFragment like this @Override public View onCreateView(org.holoeverywhere.LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View listRoot = ...
0
votes
0answers
115 views

Android CursorLoader/SimpleCursorAdapter for non-ListViews like TextViews

I'm currently developing a simple app to manage a stock of wine. It consists of a ListActivity and another Activity which is the "detail" view. The data is served via a custom ContentProvider. For ...
0
votes
1answer
103 views

ContactsContract query column 'display_name' does not exist

I'm trying to get a list of contacts in my device that have phone numbers, using a CursorLoader, like so: @Override public Loader<Cursor> onCreateLoader(int id, Bundle args) { return new ...
0
votes
0answers
95 views

How to get the right Cursor in getView() when using multiple Loaders with LoaderManager

I'm using a ListView which I want to fill with values from 2 different tables from my DB. Therefore I'am using 2 CursorLoaders and my own SimpleCursorAdapter: private static final int ...
0
votes
0answers
14 views

CursorLoader synchronism between several calls - ANDROID

i am using android 4.x with cursorloaders to access mydatabase. As I have more than one call in the same activity I would like to know if synchronism is guaranteed between the calls... This can be ...
0
votes
2answers
481 views

Using CursorLoader with LoaderManager to retrieve images from android apps

At the moment I’m using getContentResolver().query()/managedQuery() to get a cursor to retrieve images from the gallery app. Because the APIs I’m using are partly deprecated I wanted to use ...
1
vote
1answer
47 views

CursorLoader - obtain information about what has changed in db

I use standard android ContentProvider and CursorLoader from support library. I am looking for best approach for obtain information about what has changed in database. I know that I can read and ...
0
votes
0answers
46 views

Android: CursorLoader query with an array in “selection” [duplicate]

I have this function: public static CursorLoader getSongsCL(Context context, long[] songID) { Uri uri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI; String[] columns = { ...
0
votes
0answers
121 views

not loading sqlite data accordingly in listfragment

I am a bit new in Android so the problem may be very simple to resolve but I can't seem to find out how. The 1st problem: When the activity first parses json data to an sqlite db (every thing works ...
2
votes
1answer
88 views

Race condition with LoaderManager?

I'm using LoaderManager to load a cursor of list of contacts from my phone. I'm literally using just the example code given here: ...
1
vote
1answer
54 views

Get field from selected CursorLoader

Ive just changed my code to use CursorLoader as opposed to the depreciated manageCursor() methods. But have no idea how to get fields from the cursor at current clicked position public ...
1
vote
1answer
240 views

Populating an Android ListView with multiple data sources (using Loaders)

I've three database tables: Stacks, Dates and Z, where Stacks is my main table, and Dates and Z are 'child' tables, with a foreign key column, linking to the primary key column of Stacks. (Forgive my ...
0
votes
0answers
116 views

Usage CursorLoader without ContentProvider and avoiding database leaks

I have implemented the class found in this question: Usage CursorLoader without ContentProvider It is a means of using the LoaderManager and CursorLoader without a content resolver. I am using it to ...
0
votes
1answer
259 views

CursorLoader - Two tables join query?

I am having two tables with 1:1 relationship, I am using content provider and cursorloader. How would I make a join query to work with cursor loader? I could hack it up somehow with rawSql inside ...
2
votes
0answers
345 views

ExpandableListView and SimpleCursorTreeAdapter with an SQLiteCursorLoader, getChildrenCursor not called

I'll start by saying i've researched this specific solution to death and am aware of the solutions "this has been solved HERE" and HERE, but I am unable to get these working. Other info: I'm using ...
2
votes
0answers
122 views

ListFragment not showing all items from CursorLoader

I'm trying to display all rows from my content provider in a ListFragment using a CursorLoader. But it only shows the first 10 items, how do I get it to display all items? @Override public void ...
1
vote
1answer
216 views

Several cursors in onCreateLoader() method

I have problems using CursorLoader. I need to retrieve phone and email adress for given name. I implemented methods of LoaderManager.LoaderCallbacks<Cursor> interface. The problem is that I ...
-1
votes
1answer
88 views

Is there any option to implement `LoaderManager.LoaderCallbacks<Cursor>` and respective methods from a `TabActivity`?

Is there any option to implement LoaderManager.LoaderCallbacks<Cursor> and respective methods and getSupportLoaderManager().initLoader(1, null, this); from a TabActivity ? I know that ...
0
votes
1answer
93 views

null cursor in custom adapter?

I'm having an issue that I just can't seem to trace down the cause of. This may be simply due to my lack of familiarity with loaders... I have a custom adapter I use to set a prompt for a spinner in ...
0
votes
0answers
269 views

Showing specified page when view pager is first created

I have a fragment that contains a ViewPager. This ViewPager is backed by a PagerAdapter that uses a Cursor. The cursor is managed by LoaderCallbacks. I'm using the v4 support libraries here. What I ...
1
vote
1answer
116 views

Android HoneyComb - Requering already closed cursor

I read lots of questions about this problem but I can't find the right direction to my problem, maybe because I'm noob and feeling desperated to find the right way... As far as I read, the "requering ...
2
votes
2answers
695 views

Android: Handling very large data sets in ContentProvider to avoid memory limits

I am using a ContentProvider to query a database and return a Cursor that is used in a CursorLoader: ItemsActivity: public class ItemsActivity extends SherlockActivity implements ...
0
votes
0answers
127 views

Android app crashes on onLoadFinished()

I'm using an SQLite database to store objects called Reservations, that are displayed in a ListView. I used to use a cursor with the deprecated function startManagingCursor(), but it crashed my app ...
3
votes
0answers
519 views

MediaStore.Images.Thumbnails.getThumbnail returns wrong thumbnail instead of NULL

Consider the scenario as in this attached picture. Three photos, one of them is a large GIF file (3MP). I'm querying MediaStore in order to retrieve the correspondent thumbnails. If I initialize ...
1
vote
2answers
125 views

Handle CursorLoader exceptions

I have a Fragment implementing LoaderManager and using CursorLoader (nothing fancy). I want to catch exceptions thrown during the query but I don't see how!!! Any help? Thx.
0
votes
1answer
99 views

Android - Requerying cursor ordered by RANDOM()

this may sound like a silly question but Im struggling with it. I am working on a quotes application therefore I want to have my quotes ordered from the database randomly each time the application is ...
0
votes
2answers
141 views

CursorLoader in a Non Activity

I have small project where I read system metrics like Calls Logs, SMS Logs etc from content providers. I have created (Call/SMS)Logger classes to read from content providers and save info in object ...
0
votes
2answers
131 views

How to get info from ListFragment

I have a ListFragment that is populated using a CursorLoader. Once the ListFragment is populated, I have an OnItemClickListener method in which I want to identify which item from the List Fragment the ...

1 2 3