Lines Matching refs:Loader
9 <li><a href="#summary">Loader API Summary</a></li>
13 <li><a href="#starting">Starting a Loader</a></li>
14 <li><a href="#restarting">Restarting a Loader</a></li>
28 <li>{@link android.content.Loader}</li>
57 <h2 id="summary">Loader API Summary</h2>
71 android.content.Loader} instances. This helps an application manage
89 <td>{@link android.content.Loader}</td>
105 android.content.Loader} protocol in a standard way for querying cursors,
118 of a {@link android.content.Loader} class such as {@link
130 of {@link android.content.Loader} or {@link android.content.AsyncTaskLoader} to
140 <h3 id="starting">Starting a Loader</h3>
143 android.content.Loader} instances within an {@link android.app.Activity} or
148 initialize a {@link android.content.Loader} within the activity's {@link
193 method returns the {@link android.content.Loader} that is created, but you don't
205 <h3 id="restarting">Restarting a Loader</h3>
245 Instantiate and return a new {@link android.content.Loader} for the given ID.
268 android.content.Loader} subclass. </p>
295 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
296 // This is called when a new Loader needs to be created. This
297 // sample only has one Loader, so we don't care about the ID.
339 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
359 public void onLoaderReset(Loader<Cursor> loader) {
448 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
449 // This is called when a new Loader needs to be created. This
450 // sample only has one Loader, so we don't care about the ID.
471 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
477 public void onLoaderReset(Loader<Cursor> loader) {