Skip to content

Instantly share code, notes, and snippets.

View jacek-marchwicki's full-sized avatar

Jacek Marchwicki jacek-marchwicki

View GitHub Profile
// Add this template in Preferences > Java > Editor > Templates > New
// I stored this snippet with newLoader name, but you can use any name you want
// To use this loader your class should implements LoaderCallbacks<Cursor>
private static final int ${loaderName} = 0;
@Override
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
switch (id) {
case ${loaderName}: