java.lang.Object | ||||
↳ | android.widget.BaseAdapter | |||
↳ | android.support.v4.widget.CursorAdapter | |||
↳ | com.mobeta.android.dslv.DragSortCursorAdapter | |||
↳ | com.mobeta.android.dslv.ResourceDragSortCursorAdapter |
![]() |
Static library support version of the framework's android.widget.ResourceCursorAdapter. 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.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This constructor is deprecated.
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 android.app.LoaderManager with a android.content.CursorLoader.
| |||||||||||
Constructor with default behavior as per
CursorAdapter#CursorAdapter(Context, Cursor, boolean); it is recommended
you not use this, but instead #ResourceCursorAdapter(Context, int, Cursor, int).
| |||||||||||
Standard constructor.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Inflates view(s) from the specified XML file.
| |||||||||||
Sets the layout resource of the drop down views. | |||||||||||
Sets the layout resource of the item views. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
This constructor is deprecated.
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 android.app.LoaderManager with a android.content.CursorLoader.
Constructor the enables auto-requery.
context | The context where the ListView associated with this adapter is running |
---|---|
layout | resource identifier of a layout file that defines the views for this list item. Unless you override them later, this will define both the item views and the drop down views. |
Constructor with default behavior as per
CursorAdapter#CursorAdapter(Context, Cursor, boolean); it is recommended
you not use this, but instead #ResourceCursorAdapter(Context, int, Cursor, int).
When using this constructor, FLAG_REGISTER_CONTENT_OBSERVER
will always be set.
context | The context where the ListView associated with this adapter is running |
---|---|
layout | resource identifier of a layout file that defines the views for this list item. Unless you override them later, this will define both the item views and the drop down views. |
c | The cursor from which to get the data. |
autoRequery | If true the adapter will call requery() on the cursor whenever it changes so the most recent data is always displayed. Using true here is discouraged. |
Standard constructor.
context | The context where the ListView associated with this adapter is running |
---|---|
layout | Resource identifier of a layout file that defines the views for this list item. Unless you override them later, this will define both the item views and the drop down views. |
c | The cursor from which to get the data. |
flags | Flags used to determine the behavior of the adapter, as per CursorAdapter#CursorAdapter(Context, Cursor, int). |
Inflates view(s) from the specified XML file.
Sets the layout resource of the drop down views.
dropDownLayout | the layout resources used to create drop down views |
---|
Sets the layout resource of the item views.
layout | the layout resources used to create item views |
---|