使用しています
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>
これがあなたのために働くことを願っています。