Created
November 24, 2022 00:02
-
-
Save NizarETH/dbce78d420db695890cb3537d71f4799 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ItemContentProvider extends ContentProvider { | |
@Override | |
public boolean onCreate() { return true; } | |
@Nullable | |
@Override | |
public Cursor query(@NonNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable String sortOrder) { | |
return null; | |
} | |
@Nullable | |
@Override | |
public String getType(@NonNull Uri uri) { | |
return null; | |
} | |
@Nullable | |
@Override | |
public Uri insert(@NonNull Uri uri, @Nullable ContentValues contentValues) { | |
return null; | |
} | |
@Override | |
public int delete(@NonNull Uri uri, @Nullable String s, @Nullable String[] strings) { | |
return 0; | |
} | |
@Override | |
public int update(@NonNull Uri uri, @Nullable ContentValues contentValues, @Nullable String s, @Nullable String[] strings) { | |
return 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment