CursorAdapterpublic abstract class CursorAdapter extends android.widget.BaseAdapter implements android.widget.Filterable, CursorFilter.CursorFilterClientStatic library support version of the framework's {@link android.widget.CursorAdapter}.
Used to write apps that run on platforms prior to Android 3.0. When running
on Android 3.0 or above, this implementation is still used; it does not try
to switch to the framework's implementation. See the framework SDK
documentation for a class overview. |
Fields Summary |
---|
protected boolean | mDataValidThis field should be made private, so it is hidden from the SDK.
{@hide} | protected boolean | mAutoRequeryThis field should be made private, so it is hidden from the SDK.
{@hide} | protected android.database.Cursor | mCursorThis field should be made private, so it is hidden from the SDK.
{@hide} | protected android.content.Context | mContextThis field should be made private, so it is hidden from the SDK.
{@hide} | protected int | mRowIDColumnThis field should be made private, so it is hidden from the SDK.
{@hide} | protected ChangeObserver | mChangeObserverThis field should be made private, so it is hidden from the SDK.
{@hide} | protected android.database.DataSetObserver | mDataSetObserverThis field should be made private, so it is hidden from the SDK.
{@hide} | protected CursorFilter | mCursorFilterThis field should be made private, so it is hidden from the SDK.
{@hide} | protected android.widget.FilterQueryProvider | mFilterQueryProviderThis field should be made private, so it is hidden from the SDK.
{@hide} | public static final int | FLAG_AUTO_REQUERYIf set the adapter will call requery() on the cursor whenever a content change
notification is delivered. Implies {@link #FLAG_REGISTER_CONTENT_OBSERVER}. | public static final int | FLAG_REGISTER_CONTENT_OBSERVERIf set the adapter will register a content observer on the cursor and will call
{@link #onContentChanged()} when a notification comes in. Be careful when
using this flag: you will need to unset the current Cursor from the adapter
to avoid leaks due to its registered observers. This flag is not needed
when using a CursorAdapter with a
{@link android.content.CursorLoader}. |
Constructors Summary |
---|
public CursorAdapter(android.content.Context context, android.database.Cursor c)Constructor that always enables auto-requery.
init(context, c, FLAG_AUTO_REQUERY);
| public CursorAdapter(android.content.Context context, android.database.Cursor c, boolean autoRequery)Constructor that allows control over auto-requery. It is recommended
you not use this, but instead {@link #CursorAdapter(Context, Cursor, int)}.
When using this constructor, {@link #FLAG_REGISTER_CONTENT_OBSERVER}
will always be set.
init(context, c, autoRequery ? FLAG_AUTO_REQUERY : FLAG_REGISTER_CONTENT_OBSERVER);
| public CursorAdapter(android.content.Context context, android.database.Cursor c, int flags)Recommended constructor.
init(context, c, flags);
|
Methods Summary |
---|
public abstract void | bindView(android.view.View view, android.content.Context context, android.database.Cursor cursor)Bind an existing view to the data pointed to by cursor
| public void | changeCursor(android.database.Cursor cursor)Change the underlying cursor to a new cursor. If there is an existing cursor it will be
closed.
Cursor old = swapCursor(cursor);
if (old != null) {
old.close();
}
| public java.lang.CharSequence | convertToString(android.database.Cursor cursor)Converts the cursor into a CharSequence. Subclasses should override this
method to convert their results. The default implementation returns an
empty String for null values or the default String representation of
the value.
return cursor == null ? "" : cursor.toString();
| public int | getCount()
if (mDataValid && mCursor != null) {
return mCursor.getCount();
} else {
return 0;
}
| public android.database.Cursor | getCursor()Returns the cursor.
return mCursor;
| public android.view.View | getDropDownView(int position, android.view.View convertView, android.view.ViewGroup parent)
if (mDataValid) {
mCursor.moveToPosition(position);
View v;
if (convertView == null) {
v = newDropDownView(mContext, mCursor, parent);
} else {
v = convertView;
}
bindView(v, mContext, mCursor);
return v;
} else {
return null;
}
| public android.widget.Filter | getFilter()
if (mCursorFilter == null) {
mCursorFilter = new CursorFilter(this);
}
return mCursorFilter;
| public android.widget.FilterQueryProvider | getFilterQueryProvider()Returns the query filter provider used for filtering. When the
provider is null, no filtering occurs.
return mFilterQueryProvider;
| public java.lang.Object | getItem(int position)
if (mDataValid && mCursor != null) {
mCursor.moveToPosition(position);
return mCursor;
} else {
return null;
}
| public long | getItemId(int position)
if (mDataValid && mCursor != null) {
if (mCursor.moveToPosition(position)) {
return mCursor.getLong(mRowIDColumn);
} else {
return 0;
}
} else {
return 0;
}
| public android.view.View | getView(int position, android.view.View convertView, android.view.ViewGroup parent)
if (!mDataValid) {
throw new IllegalStateException("this should only be called when the cursor is valid");
}
if (!mCursor.moveToPosition(position)) {
throw new IllegalStateException("couldn't move cursor to position " + position);
}
View v;
if (convertView == null) {
v = newView(mContext, mCursor, parent);
} else {
v = convertView;
}
bindView(v, mContext, mCursor);
return v;
| public boolean | hasStableIds()
return true;
| protected void | init(android.content.Context context, android.database.Cursor c, boolean autoRequery)
init(context, c, autoRequery ? FLAG_AUTO_REQUERY : FLAG_REGISTER_CONTENT_OBSERVER);
| void | init(android.content.Context context, android.database.Cursor c, int flags)
if ((flags & FLAG_AUTO_REQUERY) == FLAG_AUTO_REQUERY) {
flags |= FLAG_REGISTER_CONTENT_OBSERVER;
mAutoRequery = true;
} else {
mAutoRequery = false;
}
boolean cursorPresent = c != null;
mCursor = c;
mDataValid = cursorPresent;
mContext = context;
mRowIDColumn = cursorPresent ? c.getColumnIndexOrThrow("_id") : -1;
if ((flags & FLAG_REGISTER_CONTENT_OBSERVER) == FLAG_REGISTER_CONTENT_OBSERVER) {
mChangeObserver = new ChangeObserver();
mDataSetObserver = new MyDataSetObserver();
} else {
mChangeObserver = null;
mDataSetObserver = null;
}
if (cursorPresent) {
if (mChangeObserver != null) c.registerContentObserver(mChangeObserver);
if (mDataSetObserver != null) c.registerDataSetObserver(mDataSetObserver);
}
| public android.view.View | newDropDownView(android.content.Context context, android.database.Cursor cursor, android.view.ViewGroup parent)Makes a new drop down view to hold the data pointed to by cursor.
return newView(context, cursor, parent);
| public abstract android.view.View | newView(android.content.Context context, android.database.Cursor cursor, android.view.ViewGroup parent)Makes a new view to hold the data pointed to by cursor.
| protected void | onContentChanged()Called when the {@link ContentObserver} on the cursor receives a change notification.
The default implementation provides the auto-requery logic, but may be overridden by
sub classes.
if (mAutoRequery && mCursor != null && !mCursor.isClosed()) {
if (false) Log.v("Cursor", "Auto requerying " + mCursor + " due to update");
mDataValid = mCursor.requery();
}
| public android.database.Cursor | runQueryOnBackgroundThread(java.lang.CharSequence constraint)Runs a query with the specified constraint. This query is requested
by the filter attached to this adapter.
The query is provided by a
{@link android.widget.FilterQueryProvider}.
If no provider is specified, the current cursor is not filtered and returned.
After this method returns the resulting cursor is passed to {@link #changeCursor(Cursor)}
and the previous cursor is closed.
This method is always executed on a background thread, not on the
application's main thread (or UI thread.)
Contract: when constraint is null or empty, the original results,
prior to any filtering, must be returned.
if (mFilterQueryProvider != null) {
return mFilterQueryProvider.runQuery(constraint);
}
return mCursor;
| public void | setFilterQueryProvider(android.widget.FilterQueryProvider filterQueryProvider)Sets the query filter provider used to filter the current Cursor.
The provider's
{@link android.widget.FilterQueryProvider#runQuery(CharSequence)}
method is invoked when filtering is requested by a client of
this adapter.
mFilterQueryProvider = filterQueryProvider;
| public android.database.Cursor | swapCursor(android.database.Cursor newCursor)Swap in a new Cursor, returning the old Cursor. Unlike
{@link #changeCursor(Cursor)}, the returned old Cursor is not
closed.
if (newCursor == mCursor) {
return null;
}
Cursor oldCursor = mCursor;
if (oldCursor != null) {
if (mChangeObserver != null) oldCursor.unregisterContentObserver(mChangeObserver);
if (mDataSetObserver != null) oldCursor.unregisterDataSetObserver(mDataSetObserver);
}
mCursor = newCursor;
if (newCursor != null) {
if (mChangeObserver != null) newCursor.registerContentObserver(mChangeObserver);
if (mDataSetObserver != null) newCursor.registerDataSetObserver(mDataSetObserver);
mRowIDColumn = newCursor.getColumnIndexOrThrow("_id");
mDataValid = true;
// notify the observers about the new cursor
notifyDataSetChanged();
} else {
mRowIDColumn = -1;
mDataValid = false;
// notify the observers about the lack of a data set
notifyDataSetInvalidated();
}
return oldCursor;
|
|