Example usage for android.app LoaderManager.LoaderCallbacks interface-usage

List of usage examples for android.app LoaderManager.LoaderCallbacks interface-usage

Introduction

In this page you can find the example usage for android.app LoaderManager.LoaderCallbacks interface-usage.

Usage

From source file com.guldencoin.androidwallet.nlg.ui.SendingAddressesFragment.java

/**
 * @author Andreas Schildbach
 */
public final class SendingAddressesFragment extends SherlockListFragment
        implements LoaderManager.LoaderCallbacks<Cursor> {
    private AbstractWalletActivity activity;

From source file de.stadtrallye.rallyesoft.ConnectionAssistantActivity.java

/**
 * Activity that hosts an IConnectionAssistant and several Fragments containing the guided login
 * User inputs and server configurations are saved here, so they can be accessed from all pages of the assistant
 */
public class ConnectionAssistantActivity extends ActionBarActivity
        implements IConnectionAssistant, LoaderManager.LoaderCallbacks<Cursor> {

From source file info.guardianproject.gpg.KeyListFragment.java

public class KeyListFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<KeyserverResult<List<KeyInfo>>> {
    public static final String TAG = "KeyListFragment";

    protected ListView mListView;
    protected ListAdapter mShowKeysAdapter = null;

From source file com.chatwing.whitelabel.fragments.CommunicationDrawerFragment.java

/**
 * Created by nguyenthanhhuy on 10/30/13.
 */
public class CommunicationDrawerFragment extends BaseFragment implements LoaderManager.LoaderCallbacks<Cursor> {
    private static final int LOADER_ID_SYNCED_BOOKMARKS = 5000;
    private static final int LOADER_ID_COUNT_CONVERSATIONS_MESSAGES_UNREAD = 5002;

From source file com.rimbit.android_wallet.ui.SendingAddressesFragment.java

/**
 * @author Andreas Schildbach
 */
public final class SendingAddressesFragment extends SherlockListFragment
        implements LoaderManager.LoaderCallbacks<Cursor> {
    private AbstractWalletActivity activity;

From source file org.klnusbaum.udj.EventListFragment.java

public class EventListFragment extends ListFragment
        implements LoaderManager.LoaderCallbacks<EventsLoader.EventsLoaderResult>, LocationListener {
    private static final String TAG = "EventListFragment";
    private static final String PROG_DIALOG_TAG = "prog_dialog";
    private static final String EVENT_JOIN_FAIL_TAG = "prog_dialog";
    private static final String LOCATION_EXTRA = "location";

From source file com.razza.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.carlrice.reader.activity.HomeActivity.java

public class HomeActivity extends BaseActivity implements LoaderManager.LoaderCallbacks<Cursor> {

    private static final String STATE_CURRENT_DRAWER_POS = "STATE_CURRENT_DRAWER_POS";

    private static final String FEED_UNREAD_NUMBER = "(SELECT " + Constants.DB_COUNT + " FROM "
            + EntryColumns.TABLE_NAME + " WHERE " + EntryColumns.IS_READ + " IS NULL AND " + EntryColumns.FEED_ID

From source file com.syncedsynapse.kore2.ui.AlbumListFragment.java

/**
 * Fragment that presents the albums list
 */
public class AlbumListFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor>,
        SwipeRefreshLayout.OnRefreshListener, SearchView.OnQueryTextListener {
    private static final String TAG = LogUtils.makeLogTag(AlbumListFragment.class);

From source file com.hamradiocoin.wallet.ui.SendingAddressesFragment.java

/**
 * @author Andreas Schildbach
 */
public final class SendingAddressesFragment extends SherlockListFragment
        implements LoaderManager.LoaderCallbacks<Cursor> {
    private AbstractWalletActivity activity;