ContentProviderを使用する時に、Failed to find provider info for... というエラーが返ってくる
現在ContentProviderを使ったアプリを作成しているのですが「Failed to find provider info for taro.thanks.mycontentprovider」と、「java.lang.RuntimeException: Unable to start activity ComponentInfo{taro.thanks/taro.thanks.MainActivity}: java.lang.NullPointerException」というエラーが返ってきます。色々と調べてみたところ、Manifestファイルに追記しなければいけないことが分かり、以下のように追記したのですが、それでも同じエラーが返ってきます。
<provider
android:authorities="taro.thanks"
android:name=".MyContentProvider"
android:exported="false"/>
そもそもContentProviderの使い方が間違っているのでしょうか?
エラーが出る場所は下記のコードのwhile(cursor.moveToNext())
の行です。
Cursor cursor = getContentResolver().query(MyContentProvider.URI_MAN, new String[]{MyContentProvider.COLUMN_VOICE}, null, null, null);
while (cursor.moveToNext()) {
ContentProviderを継承したMyContentProviderクラスのqueryメソッドは以下のようになっています。
@Override
public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
Cursor c = db.query(uri.getPathSegments().get(0), projection, selection, selectionArgs, null, null, null);
return c;
}
また、UriはMyContentProviderクラスのフィールドで
public static final Uri URI_MAN = Uri.parse("content://taro.thanks.mycontentprovider/" + TB_MAN);
と定義しています。
間違っているところがあれば、指摘していただきたいです。
すみませんが、宜しくお願いします。
Manifestファイル
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="taro.thanks" >
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:theme="@style/Theme.AppCompat.Light" >
<activity
android:name=".MainActivity"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:authorities="taro.thanks.MyContentProvider"
android:name=".MyContentProvider"
android:exported="false" />
</application>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
</manifest>