Example usage for android.content ContextWrapper subclass-usage

List of usage examples for android.content ContextWrapper subclass-usage

Introduction

In this page you can find the example usage for android.content ContextWrapper subclass-usage.

Usage

From source file com.byteshaft.neon.Notification.java

public class Notification extends ContextWrapper {

    public Notification(Context context) {
        super(context);
    }

From source file com.davidmiguel.gobees.utils.NotificationsHelper.java

/**
 * Helper class to manage notification channels introduced in Android O, and create notifications.
 */
public class NotificationsHelper extends ContextWrapper {

    public static final String MONITORING_CHANNEL = "monitoring";

From source file com.sxt.chat.utils.NotificationHelper.java

/**
 * created by sxt at 2018/11/20
 * <p>
 * Android 8.1API27??? ,??
 */
public class NotificationHelper extends ContextWrapper {

From source file net.sf.fakenames.fddemo.BaseDirLayout.java

public class BaseDirLayout extends ContextWrapper {
    private final OS os;

    private File home;

    private MountInfo mountInfo;

From source file com.mediatek.mms.ext.DefaultMmsCancelDownloadExt.java

public class DefaultMmsCancelDownloadExt extends ContextWrapper implements IMmsCancelDownloadExt {
    private static final String TAG = "Mms/MmsCancelDownloadImpl";
    private IMmsCancelDownloadHost mHost = null;

    public DefaultMmsCancelDownloadExt(Context context) {
        super(context);

From source file com.uberspot.storageutils.StorageUtils.java

/** Class containing some useful functions for easy usage of the storage capabilities in an Android device.
 */
public class StorageUtils extends ContextWrapper {

    /** Singleton instance */
    private static StorageUtils instance = null;

From source file com.mediatek.mms.ext.DefaultMmsTransactionExt.java

public class DefaultMmsTransactionExt extends ContextWrapper implements IMmsTransactionExt {
    private static final String TAG = "Mms/MmsTransactionImpl";
    private Context mContext;

    public DefaultMmsTransactionExt(Context context) {
        super(context);

From source file com.itude.mobile.mobbl.core.controller.MBDialogController.java

/**
 * Dialog controller class
 */
public class MBDialogController extends ContextWrapper {

    private String _name;

From source file net.sf.xfd.provider.ProviderBase.java

public final class ProviderBase extends ContextWrapper {
    public static final String DEFAULT_MIME = "application/octet-stream";

    private static final String ALT_DIR_MIME = "inode/directory";
    private static final String FIFO_MIME = "inode/fifo";
    private static final String CHAR_DEV_MIME = "inode/chardevice";

From source file pl.linean.btleuart.BTLEUart.java

/**
 * BTLEUart - Bluetooth low energy uart library for nRF8001 and similar
 *
 * Created by Maciej Sady (linean) on 15.11.2016.
 */
public class BTLEUart extends ContextWrapper {