|
Deprecated Constructors |
android.support.v4.widget.CursorAdapter(Context, Cursor)
This option is discouraged, as it results in Cursor queries
being performed on the application's UI thread and thus can cause poor
responsiveness or even Application Not Responding errors. As an alternative,
use LoaderManager with a CursorLoader. |
android.support.v4.widget.ResourceCursorAdapter(Context, int, Cursor)
This option is discouraged, as it results in Cursor queries
being performed on the application's UI thread and thus can cause poor
responsiveness or even Application Not Responding errors. As an alternative,
use LoaderManager with a CursorLoader. |
android.support.v4.widget.SimpleCursorAdapter(Context, int, Cursor, String[], int[])
This option is discouraged, as it results in Cursor queries
being performed on the application's UI thread and thus can cause poor
responsiveness or even Application Not Responding errors. As an alternative,
use LoaderManager with a CursorLoader. |