Home | History | Annotate | Download | only in assetprovider

Lines Matching refs:Uri

25 import android.net.Uri;
60 public String getType(Uri uri){
61 // Returns the MIME type for the selected URI, in conformance with the ContentProvider
62 // interface. Looks up the file indicated by /res/assets/{uri.path}, and returns the MIME
66 String path = uri.getPath();
74 return guessContentTypeFromName(uri.toString());
79 public AssetFileDescriptor openAssetFile (Uri uri, String mode)
81 // ContentProvider interface for opening a file descriptor by URI. This content provider
83 // /res/assets/{uri.path} will be returned.
92 String path = uri.getPath();
119 public Cursor query(Uri uri, String[] projection, String selection,
127 public Uri insert(Uri uri, ContentValues contentValues) {
132 public int delete(Uri uri, String selection, String[] selectionArgs) {
137 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {