|
@@ -0,0 +1,58 @@
|
|
|
+package com.example.mywordbook.db;
|
|
|
+
|
|
|
+import android.content.ContentProvider;
|
|
|
+import android.content.ContentValues;
|
|
|
+import android.content.UriMatcher;
|
|
|
+import android.database.Cursor;
|
|
|
+import android.net.Uri;
|
|
|
+
|
|
|
+public class MyContentProvider extends ContentProvider {
|
|
|
+ public MyContentProvider() {
|
|
|
+ }
|
|
|
+
|
|
|
+ private static final UriMatcher uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
|
|
|
+
|
|
|
+ static {
|
|
|
+ uriMatcher.addURI("com.example.mywordbook.wordsprovider", "word/#", 2);
|
|
|
+ uriMatcher.addURI("com.example.mywordbook.wordsprovider", "word", 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int delete(Uri uri, String selection, String[] selectionArgs) {
|
|
|
+ // Implement this to handle requests to delete one or more rows.
|
|
|
+ throw new UnsupportedOperationException("Not yet implemented");
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getType(Uri uri) {
|
|
|
+ // TODO: Implement this to handle requests for the MIME type of the data
|
|
|
+ // at the given URI.
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Uri insert(Uri uri, ContentValues values) {
|
|
|
+ // TODO: Implement this to handle requests to insert a new row.
|
|
|
+ throw new UnsupportedOperationException("Not yet implemented");
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean onCreate() {
|
|
|
+ // TODO: Implement this to initialize your content provider on startup.
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Cursor query(Uri uri, String[] projection, String selection,
|
|
|
+ String[] selectionArgs, String sortOrder) {
|
|
|
+ // TODO: Implement this to handle query requests from clients.
|
|
|
+ throw new UnsupportedOperationException("Not yet implemented");
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int update(Uri uri, ContentValues values, String selection,
|
|
|
+ String[] selectionArgs) {
|
|
|
+ // TODO: Implement this to handle requests to update one or more rows.
|
|
|
+ throw new UnsupportedOperationException("Not yet implemented");
|
|
|
+ }
|
|
|
+}
|