我正在尝试通过单独的应用中的内容提供商传回图像。我有两个应用程序,一个在(app a)中有活动,另一个有内容提供者(app b)
我已经使用以下代码通过app b从我的SD卡上读取图像。
App a:
public void but_update(View view)
{
ContentResolver resolver = getContentResolver();
Uri uri = Uri.parse("content://com.jash.cp_source_two.provider/note/1");
InputStream inStream = null;
try
{
inStream = resolver.openInputStream(uri);
Bitmap bitmap = BitmapFactory.decodeStream(inStream);
image = (ImageView) findViewById(R.id.imageView1);
image.setImageBitmap(bitmap);
}
catch(FileNotFoundException e)
{
Toast.makeText(getBaseContext(), "error = "+e, Toast.LENGTH_LONG).show();
}
finally {
if (inStream != null) {
try {
inStream.close();
} catch (IOException e) {
Log.e("test", "could not close stream", e);
}
}
}
};
App b:
@Override
public ParcelFileDescriptor openFile(Uri uri, String mode)
throws FileNotFoundException {
try
{
File path = new File(Environment.getExternalStorageDirectory().getAbsolutePath(),"pic2.png");
return ParcelFileDescriptor.open(path,ParcelFileDescriptor.MODE_READ_ONLY);
}
catch (FileNotFoundException e)
{
Log.i("r", "File not found");
throw new FileNotFoundException();
}
}
在应用程序中,我可以使用setImageURi显示app a资源文件夹中的图像,并使用以下代码构建URI。
int id = R.drawable.a2;
Resources resources = getBaseContext().getResources();
Uri uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" +
resources.getResourcePackageName(id) + '/' +
resources.getResourceTypeName(id) + '/' +
resources.getResourceEntryName(id) );
image = (ImageView) findViewById(R.id.imageView1);
image.setImageURI(uri);
但是,如果我尝试在app b中执行相同的操作(从应用程序b的资源文件夹而不是SD卡上的图像中读取)它不起作用,说它无法找到该文件,即使我是从资源创建文件的路径,所以它肯定存在。
有什么想法吗?它是否限制以某种方式通过内容提供商发送资源?
P.S。当我尝试使用
创建文件时,我也遇到了错误 File path = new File(uri);
说'(android.net.Uri)
'没有适用的构造函数,尽管http://developer.android.com/reference/java/io/File.html#File(java.net.URI)似乎认为这是可能的......除非java.net.URI与android.net不同。 URI,在这种情况下我可以转换它们吗?
由于
拉斯
答案 0 :(得分:0)
android.net.URI不存在。有一个android.net.Uri(请注意拼写)。这与java.net.URI不同。您可以将Uri转换为String,然后转换为URI。
因此,您可以在SD卡上打开一个文件(或者您声明的那样),然后您可以在主活动中设置一个图像(或者您声明)。我没有看到您从内容提供商处获取图像或其他任何内容?
内容提供商存储数据。它可以返回文件(即文件描述符),包括资产文件的文件描述符,但它与应用程序中的资源无关。