共享上存储的内部存储器中的影像(Sharing images that are stored on

2019-07-05 05:32发布

我有其中ImageView的设置,可以点击在画廊中打开的应用程序。

默认情况下,我用下面的代码从外部存储的文件目录来存储我的JPEG文件:

File picsDir = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES),"MyCameraApp");

但! 假设外部存储没有被安装或根本不存在(Galaxy Nexus的),这是行不通的。 所以我写了它周围的if语句,让内部的缓存目录的回落。

String state = Environment.getExternalStorageState()
if(Environment.MEDIA_MOUNTED.equals(state)){ 
    File picsDir = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES),"MyCameraApp");    
}else{
    context.getCacheDir();
}

这些图像显示了罚款,在ImageView的,但是当我的意图启动不来通过。

Intent intent = new Intent();             
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(imgFile), "image/jpeg");
startActivity(intent);

画廊被载入,但显示黑屏。 大概是因为画廊没有对文件的访问我的应用程序的缓存目录。

作为替代方案,我试图用使用媒体内容提供商MediaStore.Images.Media.INTERNAL_CONTENT_URI ,但这种努力inser图像时会导致错误:

java.lang.UnsupportedOperationException: Writing to internal storage is not supported.

我该怎么办?

Answer 1:

我想这里的问题是,你正在试图与库保存在内存私人空间打开文件(getCacheDir一个相对路径返回到应用程序,只有您的应用程序可以访问存储路径)

如果你不能在外部存储器中保存,可以尝试在一个公共的保存路径(但这样你的媒体文件可以通过每一个应用程序进行操作,如果你卸载你的应用程序不干净,你保存在这里产生的媒体)

如果您想使用专用内存,你可以写你的ContentProvider

我编辑张贴我使用acomplish我所说的内容提供者。 这是我的内容提供商(我刚刚发布你所需要的相关部分):

public class MediaContentProvider extends ContentProvider {
private static final String TAG = "MediaContentProvider";

// name for the provider class
public static final String AUTHORITY = "com.way.srl.HandyWay.contentproviders.media";

private MediaData _mediaData;

// UriMatcher used to match against incoming requests
private UriMatcher _uriMatcher;

@Override
public int delete(Uri uri, String selection, String[] selectionArgs) {
    // TODO Auto-generated method stub
    return 0;
}

@Override
public String getType(Uri uri) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public Uri insert(Uri uri, ContentValues values) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public boolean onCreate() {
    uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);

    // Add a URI to the matcher which will match against the form
    // 'content://com.stephendnicholas.gmailattach.provider/*'
    // and return 1 in the case that the incoming Uri matches this pattern
    _uriMatcher.addURI(AUTHORITY, "*", 1);

    return true;
}

@Override
public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
    // TODO Auto-generated method stub
    return 0;
}

@Override
public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {

    Log.v(TAG, "Called with uri: '" + uri + "'." + uri.getLastPathSegment());

    // Check incoming Uri against the matcher
    switch (_uriMatcher.match(uri)) {

    // If it returns 1 - then it matches the Uri defined in onCreate
        case 1:

            // The desired file name is specified by the last segment of the
            // path
            // E.g.
            // 'content://com.stephendnicholas.gmailattach.provider/Test.txt'
            // Take this and build the path to the file
            // String fileLocation = getContext().getCacheDir() + File.separator + uri.getLastPathSegment();
            Integer mediaID = Integer.valueOf(uri.getLastPathSegment());

            if (_mediaData == null) {
                _mediaData = new MediaData();
            }
            Media m = _mediaData.get(mediaID);

            // Create & return a ParcelFileDescriptor pointing to the file
            // Note: I don't care what mode they ask for - they're only getting
            // read only
            ParcelFileDescriptor pfd = ParcelFileDescriptor.open(new File(m.filePath), ParcelFileDescriptor.MODE_READ_ONLY);
            return pfd;

            // Otherwise unrecognised Uri
        default:
            Log.v(TAG, "Unsupported uri: '" + uri + "'.");
            throw new FileNotFoundException("Unsupported uri: " + uri.toString());
    }
}

那么你在清单中需要参考您的ContentProvider,在我的情况下,它是

<provider
        android:name=".contentproviders.MediaContentProvider"
        android:authorities="com.way.srl.HandyWay.contentproviders.media" >
    </provider>

然后使用它像这样

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("content://" + MediaContentProvider.AUTHORITY + "/" + m.id), "image/jpg");

在我的情况,m是存储指向一个SQLite数据库的ID的实体,我用取数据再次填充对象(_mediaData)一类,你可以更改代码以满足您的需求

这样,我在我的应用正好解决了你的问题



Answer 2:

我已经明白,不需要此回退。 有谷歌Play设备都保证在提供至少2 GB Environment.getExternalStorageDirectory()

我想在银河的Nexus这是上标记为外部内部存储器中的分区。 我将只显示一条警告,如果它是不可用的。



文章来源: Sharing images that are stored on internal memory