Questions tagged [android-loader]

Loader is an abstract class that performs asynchronous loading of data.

A class that performs asynchronous loading of data. While Loaders are active they should monitor the source of their data and deliver new results when the contents change.

Note on threading: Clients of loaders should as a rule perform any calls on to a Loader from the main thread of their process (that is, the thread the Activity callbacks and other things occur on). Subclasses of Loader (such as AsyncTaskLoader) will often perform their work in a separate thread, but when delivering their results this too should be done on the main thread.

Most implementations should not derive directly from this class, but instead inherit from AsyncTaskLoader.

Useful links

197 questions
-4
votes
1 answer

what is the best coding strategy for supporting pre-3.0 devices with android support library and after-3.0 without it?

Some library has 2 implementations: one for native 3.0 API and another for ACL support. For example Mark Murphy's enhancement for the Loader framework. https://github.com/commonsguy/cwac-loaderex So how to cope with it?
-5
votes
1 answer

Android : I want to create loader with flight image

I want to create loader in android as same as attached gif Thanks in advance
1 2 3
13
14