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 com.gmail.emerssso.srbase.database.SRContentProvider.java

/**
 * The Class SRContentProvider.  This class acts as the ContentProvider
 * for the app's internal database.  The manifest currently ensures that this
 * database is not exported to external accesses, however, this would be trivial
 * to implement if there were ever a motivation.  I don't recommend it
 * at the moment.

From source file com.android.messaging.FakeContentProvider.java

public class FakeContentProvider extends ContentProvider {

    private static class ContentOverride {
        private final String uri;
        private final String where;
        private final String args;

From source file com.adguard.android.contentblocker.FiltersContentProvider.java

public class FiltersContentProvider extends ContentProvider {

    public static final String ACTION_CONNECTED = "com.adguard.contentblocker.ACTION_CONNECTED";
    private String filtersPath;

    public FiltersContentProvider() {

From source file piuk.blockchain.android.ExchangeRatesProvider.java

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static final Uri CONTENT_URI = Uri.parse("content://" + Constants.PACKAGE_NAME + '.' + "exchange_rates");

From source file syncthing.android.service.ServiceSettingsProvider.java

/**
 * Created by drew on 10/13/15.
 */
public class ServiceSettingsProvider extends ContentProvider {

    @Inject

From source file com.fabernovel.alertevoirie.data.CategoryProvider.java

public class CategoryProvider extends ContentProvider {

    private static final int CATEGORIES = 1;
    private static final int CATEGORIES_ID = 2;
    private static final int CATEGORY_ID = 3;

From source file com.vishwa.pinit.LocationSuggestionProvider.java

public class LocationSuggestionProvider extends ContentProvider {

    private Geocoder mGeocoder;

    public static final String AUTHORITY = "com.vishwa.pinit.search_suggestion_provider";
    public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/search");

From source file de.janrenz.app.mediathek.ArdMediathekProvider.java

public class ArdMediathekProvider extends ContentProvider {

    public static final String TAG = ArdMediathekProvider.class.getSimpleName();

    @Override
    public boolean onCreate() {

From source file fr.matthiasbosc.translucentmap.PlaceProvider.java

public class PlaceProvider extends ContentProvider {

    public static final String AUTHORITY = "fr.matthiasbosc.translucentmap.PlaceProvider";

    public static final Uri SEARCH_URI = Uri.parse("content://" + AUTHORITY + "/search");

From source file org.mozilla.labs.Soup.provider.AppsProvider.java

/**
 * Provides access to a database of apps.
 */
public class AppsProvider extends ContentProvider {

    private static final String TAG = "AppsProvider";