Example usage for android.content ContentProvider subclass-usage

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

Introduction

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

Usage

From source file de.schildbach.wallet.goldcoin.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(final String currencyCode, final BigInteger rate, final String source) {

From source file org.opendatakit.common.android.provider.impl.FormsProviderImpl.java

/**
 *
 */
public abstract class FormsProviderImpl extends ContentProvider {
    static final String t = "FormsProvider";

From source file com.hippo.content.FileProvider.java

/**
 * FileProvider is a special subclass of {@link ContentProvider} that facilitates secure sharing
 * of files associated with an app by creating a <code>content://</code> {@link Uri} for a file
 * instead of a <code>file:///</code> {@link Uri}.
 * <p>
 * A content URI allows you to grant read and write access using

From source file com.mattprecious.telescope.FileProvider.java

/**
 * FileProvider is a special subclass of {@link ContentProvider} that facilitates secure sharing
 * of files associated with an app by creating a <code>content://</code> {@link Uri} for a file
 * instead of a <code>file:///</code> {@link Uri}.
 * <p>
 * A content URI allows you to grant read and write access using

From source file com.fututel.db.DBProvider.java

public class DBProvider extends ContentProvider {

    private DatabaseHelper mOpenHelper;
    private static final String UNKNOWN_URI_LOG = "Unknown URI ";

    // Ids for matcher

From source file org.thomnichols.android.gmarks.GmarksProvider.java

public class GmarksProvider extends ContentProvider {

    static final String TAG = "GMARKS PROVIDER";
    static String DB_NAME = "gmarks_sync.db";
    static String COOKIES_TABLE_NAME = "auth_cookies";
    static String BOOKMARKS_TABLE_NAME = "bookmarks";

From source file tw.net.ezcall.db.DBProvider.java

public class DBProvider extends ContentProvider {

    private DatabaseHelper mOpenHelper;
    private static final String UNKNOWN_URI_LOG = "Unknown URI ";

    // Ids for matcher

From source file com.sonetel.db.DBProvider.java

public class DBProvider extends ContentProvider {

    private DatabaseHelper mOpenHelper;
    private static final String UNKNOWN_URI_LOG = "Unknown URI ";

    // Ids for matcher

From source file org.opendatakit.services.forms.provider.FormsProvider.java

/**
 * This provider supports two types of path references to identify a given row:
 *
 * getFormsAuthority() / appName / _ID
 * getFormsAuthority() / appName / tableId / formId
 *

From source file com.google.android.dialer.provider.DialerProvider.java

public class DialerProvider extends ContentProvider {
    public static final Uri AUTHORITY_URI = Uri.parse("content://com.google.android.dialer.provider");
    public static final Uri NEARBY_PLACES_URI = Uri.withAppendedPath(AUTHORITY_URI, "nearbyPlaces");

    public static final int CHARSET_PREFIX_LEN = "charset=".length();