List of usage examples for android.app LoaderManager.LoaderCallbacks interface-usage
From source file com.android.calendar.month.MonthByWeekFragment.java
public class MonthByWeekFragment extends SimpleDayPickerFragment implements CalendarController.EventHandler, LoaderManager.LoaderCallbacks<Cursor>, OnScrollListener, OnTouchListener { private static final String TAG = "MonthFragment"; private static final String TAG_EVENT_DIALOG = "event_dialog"; private CreateEventDialogFragment mEventDialog;
From source file com.matthewmitchell.peercoin_android_wallet.ui.SendingAddressesFragment.java
/** * @author Andreas Schildbach */ public final class SendingAddressesFragment extends SherlockListFragment implements LoaderManager.LoaderCallbacks<Cursor> { private AbstractWalletActivity activity;
From source file com.hivewallet.androidclient.wallet.ui.SendingAddressesFragment.java
/** * @author Andreas Schildbach */ public final class SendingAddressesFragment extends SherlockListFragment implements LoaderManager.LoaderCallbacks<Cursor> { private AbstractWalletActivity activity;
From source file com.adkdevelopment.e_contact.TasksFragment.java
/** * Fragment with two adapters to show that I can handle both RecyclerView and ListView. * I didn't want to separate it in two different classes as they would've had too many repetitive code * Created by karataev on 4/8/16. */ public class TasksFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor>,
From source file com.jjcamera.apps.iosched.explore.ExploreSessionsActivity.java
/**
* This activity displays all sessions based on the selected filters.
* <p/>
* It can either be invoked with specific filters or the user can choose the filters
* to use from the alt_nav_bar.
*/
From source file com.meiste.tempalarm.ui.CurrentTemp.java
public class CurrentTemp extends ActionBarActivity implements GCMHelper.OnGcmRegistrationListener, LoaderManager.LoaderCallbacks<Cursor> { private static final int GPS_REQUEST = 1337; private static final int ACCOUNT_PICKER_REQUEST = 1338;
From source file com.noshufou.android.su.AppDetailsFragment.java
public class AppDetailsFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor>, FragmentWithLog, OnClickListener { // private static final String TAG = "Su.AppDetailsFragment"; private TextView mAppName = null; private ImageView mAppIcon = null;
From source file com.pindroid.fragment.BrowseBookmarksFragment.java
public class BrowseBookmarksFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor>, BookmarkBrowser, PindroidFragment, SwipeRefreshLayout.OnRefreshListener { private ListView listView; private SwipeRefreshLayout swipeRefreshLayout; private FloatingActionButton actionButton;
From source file com.example.android.tvleanback2.ui.MainFragment.java
public class MainFragment extends BrowseFragment implements LoaderManager.LoaderCallbacks<HashMap<String, List<Movie>>> { private static final String TAG = "MainFragment"; private static final int BACKGROUND_UPDATE_DELAY = 300; private static String mVideosUrl;
From source file com.google.android.apps.iosched.ui.MyScheduleFragment.java
/** * A fragment that shows the user's customized schedule, including sessions that she has chosen, * and common conference items such as keynote sessions, lunch breaks, after hours party, etc. */ public class MyScheduleFragment extends SherlockListFragment implements LoaderManager.LoaderCallbacks<Cursor>, ActionMode.Callback {