Example usage for android.content ComponentCallbacks2 interface-usage

List of usage examples for android.content ComponentCallbacks2 interface-usage

Introduction

In this page you can find the example usage for android.content ComponentCallbacks2 interface-usage.

Usage

From source file com.ape.transfer.util.FileIconLoader.java

/**
 * Asynchronously loads file icons and thumbnail, mostly single-threaded.
 */
public class FileIconLoader implements Callback, ComponentCallbacks2 {

    private static final String LOADER_THREAD_NAME = "FileIconLoader";

From source file org.restcomm.android.olympus.MainActivity.java

public class MainActivity extends AppCompatActivity implements MainFragment.Callbacks, RCDeviceListener,
        View.OnClickListener, SharedPreferences.OnSharedPreferenceChangeListener,
        AddUserDialogFragment.ContactDialogListener, ServiceConnection, ComponentCallbacks, ComponentCallbacks2 {

    private RCDevice device = null;
    boolean serviceBound = false;

From source file com.DGSD.Teexter.Utils.ContactPhotoManager.java

/**
 * Asynchronously loads contact photos and maintains a cache of photos.
 */
public abstract class ContactPhotoManager implements ComponentCallbacks2 {
    static final String TAG = "ContactPhotoManager";

From source file com.geniusgithub.contact.common.ContactPhotoManager.java

/**
 * Asynchronously loads contact photos and maintains a cache of photos.
 */
public abstract class ContactPhotoManager implements ComponentCallbacks2 {
    static final String TAG = "ContactPhotoManager";
    static final boolean DEBUG = false; // Don't submit with true

From source file com.silentcircle.contacts.ContactPhotoManagerNew.java

/**
 * Asynchronously loads contact photos and maintains a cache of photos.
 */
public abstract class ContactPhotoManagerNew implements ComponentCallbacks2 {
    static final String TAG = "ContactPhotoManagerNew";
    static final boolean DEBUG = false; // Don't submit with true

From source file com.android.contacts.common.ContactPhotoManager.java

/**
 * Asynchronously loads contact photos and maintains a cache of photos.
 */
public abstract class ContactPhotoManager implements ComponentCallbacks2 {
    static final String TAG = "ContactPhotoManager";
    static final boolean DEBUG = false; // Don't submit with true

From source file com.android.contacts.ContactPhotoManager.java

/**
 * Asynchronously loads contact photos and maintains a cache of photos.
 */
public abstract class ContactPhotoManager implements ComponentCallbacks2 {
    static final String TAG = "ContactPhotoManager";
    static final boolean DEBUG = false; // Don't submit with true

From source file com.mobileglobe.android.simpledialer.common.ContactPhotoManager.java

/**
 * Asynchronously loads contact photos and maintains a cache of photos.
 */
public abstract class ContactPhotoManager implements ComponentCallbacks2 {
    static final String TAG = "ContactPhotoManager";
    static final boolean DEBUG = false; // Don't submit with true

From source file com.mobileglobe.android.customdialer.common.ContactPhotoManager.java

/**
 * Asynchronously loads contact photos and maintains a cache of photos.
 */
public abstract class ContactPhotoManager implements ComponentCallbacks2 {
    static final String TAG = "ContactPhotoManager";
    static final boolean DEBUG = false; // Don't submit with true

From source file android.app.FragmentState.java

/**
 * A Fragment is a piece of an application's user interface or behavior
 * that can be placed in an {@link Activity}.  Interaction with fragments
 * is done through {@link FragmentManager}, which can be obtained via
 * {@link Activity#getFragmentManager() Activity.getFragmentManager()} and
 * {@link Fragment#getFragmentManager() Fragment.getFragmentManager()}.