使用しています
private static final String AUTHORITY = "com.example.todos.contentprovider";
// It should same as you defined in manifest
だからこれ
Caused by: java.lang.IllegalArgumentException: Unknown URL content://com.example.todos.contentprovider/todos
したがって、必ずContentProvider
を定義してください。 同じauthority
manifest.xml
内
<provider
android:authorities="com.example.todos.contentprovider"
android:name=".YOUR_ContentProvider" >
</provider>
これがあなたのために働くことを願っています。