An abstract class associated with an Activity or Fragment for managing one or more Loader instances. This helps an application manage longer-running operations in conjunction with the Activity or Fragment lifecycle; the most common use of this is with a CursorLoader, however applications are free to ...
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 ...
0
votes
1answer
12 views
1st Activity's listview not updated after 2nd activity inserts into database via ContentProvider; onLoadFinished not called
Problem: upon returning from a 2nd activity the first activity's listview does not reflect database changes made by the 2nd activity. If I make a trivial change to code (to make emulator happy) and ...
0
votes
1answer
31 views
LoaderManager reference not found with API Level 17
I am writing an android sample app and trying to create sample of listview using sample code from here. And it can't resolve LoaderManager. Any idea what could be wrong?
I am using eclipse toolkit ...
0
votes
0answers
29 views
Loader is not retained after starting new activity, changing orientation in new activity and pressing back button
I been running into an issue with loaders lately. I created a small project that reproduces the issue https://github.com/solcott/loaders-orientation-change
I have a simple Activity that adds a ...
0
votes
0answers
31 views
getLoaderManager: in an activity
I am writing an app for a WIMMOne watch: no orientation changes, a small simple screen, and Android version 7.
I got my first Android APP running, but based on a book, it had a fragment. But ...
3
votes
1answer
38 views
Should Loaders be used to access web services?
For what I understand, the Loader framework is geared towards accessing data stored locally in a ContentProvider / SQLite database. We have the CursorLoader class that handles this use case quite ...
0
votes
1answer
45 views
Loader not loading data when sqlite data changes
I have a DialogFragment that I'm working on to display two spinners, side by side, one displays a list of drivers, the other a list of vehicles.
The data to populate these spinners is retrieved from ...
0
votes
0answers
26 views
OnLoadFinished not received from LoaderManager when screen orientation changes
I have an activity with a ListView and the data for the ListView is loaded using Loaders.
I want to refresh the data whenever onResume is called so I am calling LoaderManager.initLoader(..) in ...
0
votes
0answers
37 views
LoaderCallbacks.onLoadFinished not called if orientation change happens during AsyncTaskLoader with spinner
I am aware of this question: LoaderCallbacks.onLoadFinished not called if orientation change happens during AsyncTaskLoader run however it does not resolve my issue.
Essentially I have a spinner in ...
1
vote
0answers
54 views
Fragment view async update: ImageView not updating but other childs are getting updated in the view
I have ViewPager which uses Fragments.. fragments contain only a framelayout with ImageView and big TextView as title right now.. each fragment image is getting loaded asynchronously..
My problem is ...
0
votes
1answer
50 views
Using custom CursorAdapter with LoaderManger initialize with null cursor
I have created a custom CursorAdapter to use with my listview and implemented the LoaderManager.LoaderCallbacks functions to load data.
My problem: in my onCreate() method for my activity, I want to ...
0
votes
1answer
74 views
Android - onLoadFinished not called
I am facing an issue with Loader.
I have an Activity, which displays list of records retrieved from local DB. When the activity starts, records are automatically loaded via LoaderManager.initLoader() ...
0
votes
1answer
56 views
On orientation change LoaderManager calls onLoadFinished but list not set
I have been learning about Android Loaders and been trying to implement one with AsyncTaskLoader.
I have been very successful, thus making this even more annoying :P
My onLoadFinished function is as ...
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
0answers
25 views
Changing event start and event end date format of all rows within a column when using loaders in android
I am a newbie to android programming. I am using a ListView to display some information about events in the calendar (Title,description,event start date and event end date) using ...
0
votes
0answers
111 views
Custom Loader - onStartLoading() called when fragment returned from backstack
I have search results displayed using ViewPager & FragmentStatePageAdapter, with each set of results in its own fragment. THe data is loaded using a custom AsyncTaskLoader. I want to preserve the ...
0
votes
1answer
67 views
Getting nullpointer on swapcursor after prolonged inactivity
My loaders, fragment and content provider work fine. All my lists can updated OK, but after a prolonged period of inactivity (main activity gets paused), if I reactivite the app, I get a null pointer ...
0
votes
0answers
111 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.
...
2
votes
1answer
146 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 ...
6
votes
2answers
163 views
Loader delivers result to wrong fragment
I have an activity with swiping tabs using ActionBar tabs, based on the android developer example.
Each tab displays a Fragment, and each Fragment (actually, a SherlockFragment) loads a different ...
1
vote
1answer
79 views
LoaderManager.onLoadFinished is called even when the specific query doesn't match the update
I have a Android app which has a Content Provider which I update frequently. To load the lists of the said data, I'm using a LoaderManager.
On the detail page, I also use a LoaderManager, but I ...
0
votes
0answers
37 views
Using Loader Managers to dispay non listview data
I am trying to implement LoaderManagers in my app. These may sound like really dumb questions but all the examples I've seen of loaderManagers so far have been to use them to populate a single list.
...
0
votes
0answers
45 views
How to Change from using an AysnTask to a Loader
I have been reading this "Implementing Loaders" and am about to attempt to change from using an AsyncTask<String, Void, JSONArray> to using a less error prone LoaderManager with a Loader.
My ...
0
votes
0answers
24 views
Implementing LoaderManager in an extended class
I am implementing the LoaderManager in my app with the support v4 back compatibility to load cursors from my database. I currently have a BaseMethods class which all my other activities extend from, ...
0
votes
1answer
96 views
Fragment save state on configuration change
I am developing twitter client.
I have TimelineFragment with loaders which load data from db and web.
I have setRetainInstance(true) in onActivityCreated.
When orientation change view recycled? how i ...
0
votes
1answer
74 views
LoaderCallbacks missed after rotation
I have this problem every time I use loader. If I start my AsyncTaskLoader and then rotate screen (doesn't matter one or several times) onLoaderFinished() is not called. loadInBackground() finishes ...
0
votes
1answer
96 views
what format must have my custom CONTENT_FILTER_URI?
I have a listview that I’m populating from a sqlite database via LoaderManager and also I want to be able to filter this list.
I’m following the example from the android documentation: ...
0
votes
1answer
59 views
Start loader from another loader. Right or Wrong?
I have listview that is populated through CursorLoader. CursorLoader is created by LoaderManager.LoaderCallback's createLoader method. I have no problems with this. The problem is in that I want to ...
0
votes
1answer
190 views
FragmentPagerAdapter implementing LoaderManager.LoaderCallbacks<Cursor>
Im trying to implement a FragmentPagerAdapter with a cursor loader. However, it seems that I am unable to access the cursor within getItem() as I get a null reference error when attempting to access ...
1
vote
0answers
55 views
What can cause StaleDataException other than prematurely calling cursor.close()?
I'm currently heavily modifying/rewriting an Android app and I have seen a very occasional crash along the following lines: a CursorAdapter method is called, it calls ...
2
votes
1answer
415 views
IllegalStateException “attempt to re-open an already-closed object” in SimpleCursorAdapter from ContentProvider
I have a series of ListView objects in Fragments that are being populated by a CursorAdapter which gets a Cursor from the LoaderManager for the activity. As I understand it, all database and Cursor ...
1
vote
0answers
40 views
Android Loaders lifecycle, or: will onStopLoading() always called before onReset()?
Could there be a case in which onReset() is called without calling onStopLoading() directly before it?
More generally, I'm trying to figure out the Loader's life-cycle, a-la the Activity lifecycle ...
3
votes
1answer
390 views
OnLoadFinished() called twice
I'm trying to figure out if I'm doing something wrong with respect to Loaders. I'm using the support library, and I have a Fragment which in onCreate() calls initLoader() setting itself as the ...
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
3answers
89 views
Refresh ListView from within a custom ListView class
I use a LoaderManager to fill the Adapter of my ListView with data. I implemented the LoaderManager.Callbacks but I can't refresh the ListView to display the new data.
Calling ...
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 ...
1
vote
1answer
123 views
Getting “Called doStart when already started” from LoaderManager. Why?
My code has an Activity, that has a FragmentPagerAdapter that creates 'n' fragments as necessary.
Activity has a loader, and each fragment has its own loader. All loaders have unique ID.
(Activity's ...
0
votes
1answer
153 views
SherlockFragmentActivity cases performance problems with list view
Hi after extended from SherlockFragmentActivity the lists become slow.
So the architecture I'm using is the following:
I have:
1.SherlocFragment activity where I display the list
2.Adapter to ...
0
votes
1answer
69 views
viewPager and loadermanager callbacks
I have in my app a viewpager with 3 fragments. The middle fragment in the viewPager is fragment with a listview in it and it implements a loader.callbacks interface for a cursor loader.
The issue I ...
10
votes
5answers
688 views
Difference between `initLoader` and `restartLoader` in `LoaderManager`
I'm completely lost regarding the differences between the initLoader and the restartLoader functions of the LoaderManager:
They both have the same signature.
restartLoader also creates a loader, if ...
0
votes
2answers
484 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 ...
0
votes
1answer
190 views
how to use the loader<cursor> with my own adapter?
I'm getting some errors when trying to implement loader manager for use with my content provider and DB.
I'll start with logcat output:
1-19 16:37:33.628: I/(20193): Loaded EGL implementation ...
1
vote
1answer
221 views
Loader not getting callbacks to update ListFragment
I have an activity that goes and pulls all the users calendar events from the google calendar, the get inserted into the database fine but the Loader for theListFragment` of the activity never gets ...
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:
...
0
votes
1answer
270 views
Can't use “this” as an argument in the getLoaderManager().initLoader() method
Instead of using some of the deprecated SimpleCursorAdapter constructors, many people have suggested to use LoaderManager and CursorLoader. So when calling getLoaderManager().initLoader() it gives me ...
0
votes
0answers
117 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
0answers
114 views
CursorLoader start new asynctask when returning to screen
I have implemented simple MainActivity which contains ListFragment. ListFragment loads data from ContentProvider using CursorLoader. There is also AddActivity which insert new record into data ...
1
vote
1answer
146 views
which is right place to open/close database resources in list fragment with Async Task loader
Which is the best place to open and close Database resources in ListFragment which implements LoaderManager.LoaderCallbacks?
I have a list fragment which implements ...
2
votes
0answers
278 views
Multiple Fragments in TabsPager with Loaders, swiping works, clicking doesn't
I am using an ActionBarSherlock example to build on. I have 3 fragments (each extends SherlockListFragment and implement LoaderManager.LoaderCallbacks<>), 1 in each tab. They all use loaders. ...
0
votes
0answers
357 views
listview not refresh even after calling restart loader
I have List fragment with Context menu on long press of list item. The list item clicked and the list item removed from my Database. But the list not refresh even after calling restart loader?
...


