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 fr.simon.marquis.secretcodes.util.ExportContentProvider.java

public class ExportContentProvider extends ContentProvider {

    private static final String ZIP_FILE_NAME = "SecretCodes.zip";
    private static final String JSON_FILE_NAME = "SecretCodes.json";
    private static final int BUFFER = 2048;

From source file org.coocood.vcontentprovider.VContentProvider.java

public abstract class VContentProvider extends ContentProvider {
    private VSQLiteOpenHelper mOpenHelper;
    private SQLiteDatabase db;
    private static HashMap<String, ArrayList<String>> tableMap = new HashMap<String, ArrayList<String>>();
    private static HashMap<String, ArrayList<String>> viewTablesMap = new HashMap<String, ArrayList<String>>();
    private HashSet<Uri> batchingUris;

From source file com.example.android.notepad.CMNotesProvider.java

/**
 * Provides access to a database of notes. Each note has a title, the note
 * itself, a creation date and a modified data.
 */
public class CMNotesProvider extends ContentProvider {

From source file com.rightscale.provider.Dashboard.java

/**
 * The Android content provider used to retrieve REST resources from the
 * RightScale API. The UI widgets know how to deal with content, so we wrap the
 * API in a layer that makes it act like content.
 * 
 * Note that "URIs" mentioned in this class do not necessarily map 1:1 to API

From source file fr.seeks.SuggestionProvider.java

/**
 * Provides access to the dictionary database.
 */
public class SuggestionProvider extends ContentProvider {
    String TAG = "SeeksSuggestionProvider";

From source file com.android.googlesearch.SuggestionProvider.java

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

From source file net.naonedbus.provider.CustomContentProvider.java

public abstract class CustomContentProvider extends ContentProvider {

    private static CoreDatabase database;
    private static DatabaseActionObserver databaseActionListener;

    @Override

From source file com.synox.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 com.android.talkback.labeling.LabelProvider.java

/**
 * A content provider for accessing TalkBack custom label data.
 * <p>
 * The following operations are supported at each URI:
 * <ul>
 * <li>{@code AUTHORITY/labels}: query and insert.

From source file de.schildbach.wallet.elysium.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) {