我正在开发一个显示图像的应用程序。该应用程序提供了将图像作为附件发送电子邮件的选项。我必须将图像保存到SD卡,以便将图像作为附件发送。
是否可以将图像作为附件发送,而无需先将其写入SD卡?
答案 0 :(得分:1)
您必须为图片创建ContentProvider
答案 1 :(得分:1)
@sivaraj 例如,如果您将图像存储在手机中的任何位置(即使在私人文件夹中) 如果您不想在openFile方法中完全存储它,请修改它。 在您的清单中使用正确的权限属性注册您的提供商,就是这样!
public class ImageProvider extends ContentProvider {
private static final String URI_PREFIX = "content://com.android.myproject.anythingyouwant";
public static String constructUri(String url) {
Uri uri = Uri.parse(url);
return uri.isAbsolute() ? url : URI_PREFIX + url;
}
@Override
public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
File file = new File(uri.getPath());
ParcelFileDescriptor parcel = ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY);
return parcel;
}
@Override
public boolean onCreate() {
return true;
}
@Override
public int delete(Uri uri, String s, String[] as) {
throw new UnsupportedOperationException("Not supported by this provider");
}
@Override
public String getType(Uri uri) {
throw new UnsupportedOperationException("Not supported by this provider");
}
@Override
public Uri insert(Uri uri, ContentValues contentvalues) {
throw new UnsupportedOperationException("Not supported by this provider");
}
@Override
public Cursor query(Uri uri, String[] as, String s, String[] as1, String s1) {
throw new UnsupportedOperationException("Not supported by this provider");
}
@Override
public int update(Uri uri, ContentValues contentvalues, String s, String[] as) {
throw new UnsupportedOperationException("Not supported by this provider");
}
}
答案 2 :(得分:0)
AFAIK,写入SD卡拳头是唯一的方法......因为邮件客户端必须能够读取文件,所以这是必要的。因此,它必须存储在公共场所。