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.android.quicksearchbox.google.GoogleSuggestionProvider.java

/**
 * Use network-based Google Suggests to provide search suggestions.
 *
 * Future:  Merge live suggestions with saved recent queries
 */
public class GoogleSuggestionProvider extends ContentProvider {

From source file com.owncloud.android.providers.UsersAndGroupsSearchProvider.java

/**
 * Content provider for search suggestions, to search for users and groups existing in an ownCloud server.
 */
public class UsersAndGroupsSearchProvider extends ContentProvider {

    private static final String TAG = UsersAndGroupsSearchProvider.class.getSimpleName();

From source file org.blanco.techmun.android.cproviders.TechMunContentProvider.java

public class TechMunContentProvider extends ContentProvider {

    protected static String MESAS_REST_SERVICE_BSAE_URI = "http://tec-ch-mun-2011.herokuapp.com/rest";

    public static final String CONTENT_BASE_URI = "content://org.blanco.techmun.android.mesasprovider";

From source file de.schildbach.wallet.marscoin.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 redgun.bakingapp.data.RecipesProvider.java

public class RecipesProvider extends ContentProvider {

    static final int RECIPES = 100;
    // The URI Matcher used by this content provider.
    private static final UriMatcher sUriMatcher = buildUriMatcher();
    private static final SQLiteQueryBuilder sWeatherByLocationSettingQueryBuilder;

From source file org.opensilk.music.artwork.provider.ArtworkProvider.java

/**
 * Created by drew on 3/25/14.
 */
public class ArtworkProvider extends ContentProvider {
    private static final String TAG = ArtworkProvider.class.getSimpleName();

From source file de.schildbach.wallet.litecoin.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 com.feathercoin.wallet.feathercoin.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 com.odoo.support.provider.OContentProvider.java

/**
 * The Class OContentProvider.
 */
public abstract class OContentProvider extends ContentProvider implements OContentProviderHelper {

    private final int COLLECTION = 1;

From source file au.com.cybersearch2.classyfy.provider.ClassyFyProvider.java

/**
 * ClassyFyProvider
 * Implements android.content.ContentProvider and binds to persistence implementation through Dagger Dependency Injection.
 * This class is only a shell delegating to a PrimaryContentProvider implementation managed by ClassyFyApplication.
 * 
 * @author Andrew Bowley