List of usage examples for android.widget SimpleCursorAdapter subclass-usage
From source file com.money.manager.ex.core.ToolbarSpinnerAdapter.java
/** * Custom adapter for the account list in the transaction list toolbar. */ public class ToolbarSpinnerAdapter extends SimpleCursorAdapter { public ToolbarSpinnerAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) { super(context, layout, c, from, to, flags);
From source file com.paranoid.gerrit.adapters.ChangeListAdapter.java
public class ChangeListAdapter extends SimpleCursorAdapter { Context mContext; // Cursor indices private Integer changeid_index;
From source file com.gelakinetic.mtgfam.helpers.ResultListAdapter.java
/** * This list adapter is used to display a list of search results. It implements SectionIndexer to enable fast scrolling. */ public class ResultListAdapter extends SimpleCursorAdapter { private final String[] mFrom;
From source file com.gelakinetic.mtgfam.helpers.AutocompleteCursorAdapter.java
/** * This cursor adapter provides suggestions for card names directly from the database */ public class AutocompleteCursorAdapter extends SimpleCursorAdapter implements LoaderManager.LoaderCallbacks<Cursor> {
From source file com.android.mail.ui.AnimatedAdapter.java
public class AnimatedAdapter extends SimpleCursorAdapter { private static int sDismissAllShortDelay = -1; private static int sDismissAllLongDelay = -1; private static final String LAST_DELETING_ITEMS = "last_deleting_items"; private static final String LEAVE_BEHIND_ITEM_DATA = "leave_behind_item_data"; private static final String LEAVE_BEHIND_ITEM_ID = "leave_behind_item_id";
From source file com.tct.mail.ui.AnimatedAdapter.java
public class AnimatedAdapter extends SimpleCursorAdapter { private static int sDismissAllShortDelay = -1; private static int sDismissAllLongDelay = -1; private static final String LAST_DELETING_ITEMS = "last_deleting_items"; private static final String LEAVE_BEHIND_ITEM_DATA = "leave_behind_item_data"; private static final String LEAVE_BEHIND_ITEM_ID = "leave_behind_item_id";