共享存储在内部存储器中的图像
我有一个应用程序,在该应用程序中设置了ImageView,并且可以单击该应用程序以在库中打开。
默认情况下,我使用以下代码从外部存储中获取文件目录以存储我的jpegs:
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
的媒体内容提供程序,但尝试插入图像时会导致错误:
java.lang.UnsupportedOperationException: Writing to internal storage is not supported.
我该怎么办?
我想这里的问题是,你试图打开一个文件保存在内存的私人空间(getCacheDir返回一个相对于你的应用程序的路径,只有你的应用程序可以访问该内存路径)
如果您不能保存在外部存储器中,则可以尝试保存在公共路径中(但这样,您的媒体文件可以被每个应用程序操纵,如果您卸载应用程序,则不会清除您保存在那里的生成媒体)
如果你想使用私人内存,你可以写你的ContentProvider
我编辑发布一个内容提供商,我用它来表达我所说的话。 这是我的内容提供者(我刚刚发布了您需要的相关部分):
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());
}
}
那么你需要在清单中引用你的内容提供者,在我的情况下是这样的
<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),您可以更改代码以适合您的需求
这样我在我的应用程序中完全解决了你的问题
我了解到,这种后备不需要。 具有Google Play的设备保证在Environment.getExternalStorageDirectory()
中至少有2 GB可用。
我猜想在Galaxy Nexus中,这是内部存储器上标记为外部的分区。 如果它不可用,我只会显示警告。
链接地址: http://www.djcxy.com/p/11563.html