Lines Matching full:cursor
16 <a href="#HandleReset">Delete Old Cursor References</a></li>
36 {@link android.database.Cursor} containing the query results. You can use this object to
46 that data associated with the {@link android.database.Cursor} has changed. When the
51 To display {@link android.database.Cursor} data returned by
56 the {@link android.database.Cursor} to the view.
60 and then move a {@link android.database.Cursor} into the adapter in the
62 method. As soon as you move the {@link android.database.Cursor} into the adapter, the
64 {@link android.database.Cursor}.
86 null, // No Cursor yet
87 mFromColumns, // Cursor columns to use
99 public void onLoadFinished(Loader<Cursor> loader, Cursor cursor) {
105 mAdapter.changeCursor(cursor);
108 <h2 id="HandleReset">Delete Old Cursor References</h2>
111 {@link android.database.Cursor} becomes invalid. This usually occurs because the data associated
112 with the {@link android.database.Cursor} has changed. Before re-running the query,
115 this callback, you should delete all references to the current {@link android.database.Cursor}
126 * called if the data in the provider changes and the Cursor becomes stale.
129 public void onLoaderReset(Loader<Cursor> loader) {
132 * Clears out the adapter's reference to the Cursor.