2

私の目標は、Activity のない ContentProvider を作成することです。テストのために、私はテストを書きました-独自のアプリでのアクティビティ。Android にはまだロガーが含まれていると言いたい人のために、私はこれを知っています。

これはContentProviderの一部です

public static final String AUTHORITY = "de.xyz.android.log4android";
public static final int LOGGER_ARROW_URI_ID = 1;
public static final String ARROW_CONTENT_TYPE = 
    "vnd.de.xyz.android.cursor.dir/vnr.log";

public static final int LOGGER_ITEM_URI_ID = 2;
public static final String ITEM_CONTENT_TYPE = 
    "vnd.de.xyz.android.cursor.item/vnr.log";

public static final UriMatcher sUriMatcher;
static {
    sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
    sUriMatcher.addURI(AUTHORITY, LOGGER_TABLE, LOGGER_ARROW_URI_ID);
    sUriMatcher.addURI(AUTHORITY, LOGGER_TABLE + "#", LOGGER_ITEM_URI_ID);
}

public static final Uri CONTENT_URI = Uri.parse("content://"
        + LogServiceProvider.AUTHORITY + "/logs");

public static final DefaultLogEntry LOG_ENTRY = null;

//Some more not important code

@Override
public Uri insert(Uri uri, ContentValues initialValues) {
    synchronized (this) {
        try {
            long rowID = dbHelper.getWritableDatabase().insert(LOGGER_TABLE,
                    null, initialValues);

            if (rowID > 0) {
                Uri _uri = ContentUris.withAppendedId(CONTENT_URI, rowID);
                getContext().getContentResolver().notifyChange(_uri, null);
                return _uri;
            }
        } catch (Exception ex) {
        }
        throw new SQLException("Failed to insert row into " + uri);
    }
}

//Some more not important code

そのため、コンテンツ プロバイダー情報も manifest.xml に追加します。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="de.xyz.android.logger"
          android:versionCode="1"
          android:versionName="1.0">

    <provider 
        android:name="de.xyz.android.logger.LogServiceProvider" 
        android:authorities="de.xyz.android.log4android"/>

    <application android:icon="@drawable/icon" android:label="@string/app_name">
    <uses-sdk android:minSdkVersion="4" /> 
</application>

これは、別のアプリにある私のクライアントアクティビティの一部です。

ContentResolver cr = getContentResolver();
Uri getItem = Uri.parse("content://de.xyz.android.log4android/logs");
ContentValues values = new ContentValues();
values.put("level","WARNING");
values.put("time","1986-11-16");
values.put("message","FistTest");
values.put("owner","jsb");
values.put("file","testLog.java");
values.put("line","27");
Uri newItem = cr.insert(getItem, values);

LogCat は、TestClient が ContentProvider を見つけられないことを教えてくれます

05-27 12:42:52.099: エラー/ActivityThread(548): de.xyz.android.log4android のプロバイダー情報が見つかりませんでした

私のエラーはどこにありますか。私の意見では、次の記事で言及したことはすべて実行しました。アンドロイド。ヒントを頂ければ幸いです。理解するためにさらにコードの断片が必要な場合は、私に尋ねてください。

4

2 に答える 2

4
<provider android:name=".LogServiceProvider"
          android:authorities="de.xyz.android.log4android"
          android:exported="true" />

役立つはずです:)

于 2011-05-27T13:50:16.087 に答える
1

これが失敗する難解な方法の 1 つは、引数を取るコンテンツ プロバイダーで定義されたコンストラクターがある場合です。これにより、デフォルトの 0 引数コンストラクターが存在しなくなります。これにより、マニフェストの android:name で指定したクラスにゼロ引数のコンストラクターが見つからないため、プロバイダーのランタイム登録が失敗します。

于 2011-10-06T06:34:36.010 に答える