List of usage examples for android.app LoaderManager.LoaderCallbacks interface-usage
From source file com.enadein.carlogbook.ui.ImportActivity.java
public class ImportActivity extends BaseActivity implements LoaderManager.LoaderCallbacks<ImportExportResult> { private ListView list; private FileAdapter fileAdapter; private File selectedFile = null; private CheckBox deleteView;
From source file com.example.android.nfcprovisioning.NfcProvisioningFragment.java
/**
* Provides UI and logic for NFC provisioning.
* <p>
* This fragment creates an intent, which sends parameters to a second device via an Nfc bump. If
* the second device is factory reset, this will start provisioning the second device to set it up
* as an owned device.
From source file com.piusvelte.cloudset.android.ActionsFragment.java
public class ActionsFragment extends ListFragment implements LoaderManager.LoaderCallbacks<List<SimpleAction>> { private static final String TAG = "ActionsFragment"; // load the actions for the subscription to this device private ActionsAdapter adapter; // subscriptions, filtered on the publisherId
From source file com.jcodeing.k_sonic.explorer.FileListFragment.java
public class FileListFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> { private static final String ARG_PATH = "path"; private TextView mPathView; private ListView mFileListView; private VideoAdapter mAdapter;
From source file com.commonsware.cwac.loaderex.demo.ConstantsBrowserACL.java
public class ConstantsBrowserACL extends FragmentActivity implements LoaderManager.LoaderCallbacks<Cursor> { private static final int ADD_ID = Menu.FIRST + 1; private static final int DELETE_ID = Menu.FIRST + 3; private DatabaseHelper db = null; private SimpleCursorAdapter adapter = null; private SQLiteCursorLoader loader = null;
From source file com.jpventura.xyzreader.ui.ArticleDetailActivity.java
/** * An activity representing a single Article detail screen, letting you swipe between articles. */ public class ArticleDetailActivity extends AppCompatActivity implements LoaderManager.LoaderCallbacks<Cursor> { private Cursor mCursor;
From source file com.pindroid.fragment.BrowseTagsFragment.java
public class BrowseTagsFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor>, PindroidFragment { private String sortfield = Tag.Name + " ASC"; private SimpleCursorAdapter mAdapter;
From source file com.kylebeal.datedialogfragment.example.DateListFragment.java
public class DateListFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor> { private static final int DATE_LIST_LOADER = 0x01; private ListItemSelectedListener mSelectedListener; private SimpleCursorAdapter mAdapter;
From source file com.dgsd.android.ShiftTracker.Fragment.HoursAndIncomeSummaryFragment.java
public class HoursAndIncomeSummaryFragment extends SherlockDialogFragment implements LoaderManager.LoaderCallbacks<Cursor> { private static final String KEY_JD = "_julian_day"; private static final int LOADER_ID_MONTH = 0x01; private static final int LOADER_ID_3_MONTH = 0x02;
From source file com.example.isse.weatherapp.ui.WeatherDetailFragment.java
/**
* A fragment representing a single Weather detail screen.
* This fragment is either contained in a {@link WeatherListActivity}
* in two-pane mode (on tablets) or a {@link WeatherDetailActivity}
* on handsets.
*/