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.manning.androidhacks.hack043.provider.SQLiteContentProvider.java

public abstract class SQLiteContentProvider extends ContentProvider implements SQLiteTransactionListener {

    private SQLiteOpenHelper mOpenHelper;
    private volatile boolean mNotifyChange;
    protected SQLiteDatabase mDb;

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

/**
 * @author Andreas Schildbach
 */
public class ExchangeRatesProvider extends ContentProvider {
    public static class ExchangeRate {
        public ExchangeRate(final org.bitcoinj.utils.ExchangeRate rate, final String source) {

From source file hashengineering.digitalcoin.wallet.ExchangeRatesProvider.java

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

From source file com.rimbit.android_wallet.ExchangeRatesProvider.java

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

From source file com.jdi.XmlDocumentProvider.java

/**
 *
 * A read-only content provider which extracts data out of an XML document.
 *
 * <p>A XPath-like selection pattern is used to select some nodes in the XML document. Each such
 * node will create a row in the {@link Cursor} result.</p>

From source file com.ascf.jwt.appstore.XmlDocumentProvider.java

/**
 *
 * A read-only content provider which extracts data out of an XML document.
 *
 * <p>A XPath-like selection pattern is used to select some nodes in the XML document. Each such
 * node will create a row in the {@link Cursor} result.</p>

From source file com.androidclub.source.XmlDocumentProvider.java

/**
 *
 * A read-only content provider which extracts data out of an XML document.
 *
 * <p>A XPath-like selection pattern is used to select some nodes in the XML document. Each such
 * node will create a row in the {@link Cursor} result.</p>

From source file com.senecaapp.rssreader.XmlDocumentProvider.java

/**
 *
 * A read-only content provider which extracts data out of an XML document.
 *
 * <p>A XPath-like selection pattern is used to select some nodes in the XML document. Each such
 * node will create a row in the {@link Cursor} result.</p>

From source file org.cdmckay.android.provider.MediaWikiProvider.java

public class MediaWikiProvider extends ContentProvider {
    private static final String TAG = "MediaWikiProvider";

    private static final int SEARCH = 1;
    private static final int PAGE_BY_TITLE = 2;
    private static final int PAGE_BY_ID = 3;

From source file com.example.android.xmladapters.XmlDocumentProvider.java

/**
 *
 * A read-only content provider which extracts data out of an XML document.
 *
 * <p>A XPath-like selection pattern is used to select some nodes in the XML document. Each such
 * node will create a row in the {@link Cursor} result.</p>