Lines Matching full:link
30 {@link android.support.v4.content.CursorLoader} in your implementation of
31 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onCreateLoader
33 {@link android.app.Activity} or {@link android.support.v4.app.FragmentActivity} in your
34 implementation of {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoadFinished
36 {@link android.database.Cursor} containing the query results. You can use this object to
41 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onCreateLoader onCreateLoader()} and
42 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoadFinished onLoadFinished()},
44 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoaderReset onLoaderReset()}.
45 This method is invoked when {@link android.support.v4.content.CursorLoader} detects
46 that data associated with the {@link android.database.Cursor} has changed. When the
51 To display {@link android.database.Cursor} data returned by
52 {@link android.support.v4.content.CursorLoader}, use a
53 {@link android.view.View} class that implements {@link android.widget.AdapterView} and
55 {@link android.support.v4.widget.CursorAdapter}. The system then automatically moves data from
56 the {@link android.database.Cursor} to the view.
60 and then move a {@link android.database.Cursor} into the adapter in the
61 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoadFinished onLoadFinished()}
62 method. As soon as you move the {@link android.database.Cursor} into the adapter, the
64 {@link android.database.Cursor}.
95 * Defines the callback that {@link android.support.v4.content.CursorLoader} calls
110 The {@link android.support.v4.content.CursorLoader} is reset whenever its
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,
114 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoaderReset onLoaderReset()}. In
115 this callback, you should delete all references to the current {@link android.database.Cursor}
117 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoaderReset onLoaderReset()}
118 finishes, {@link android.support.v4.content.CursorLoader} re-runs its query.