从应用程序Android图像查看器

我试图用内置的Android图像查看器启动一个写入我的应用程序目录的图像。 该图像已经被写入到应用程序目录的不同部分。 获取以下文件时:

super.getFilesDir() + "/current.png"

File.exists()返回true。

我如何启动内置​​Android图像查看器来查看此文件? 目前我在做:

File f = new File(super.getFilesDir()+"/current.png");
uri = Uri.parse("file://"+super.getFilesDir()+"/current.png");
startActivity(new Intent(Intent.ACTION_VIEW, uri));

它不断搅动:

10-11 13:09:24.367:INFO / ActivityManager(564):开始活动:Intent {act = android.intent.action.VIEW dat = file:///data/data/com.davidgoemans.myapp/files/current .png} 10-11 13:09:24.367:错误/ myapp(2166):异常occuredandroid.content.ActivityNotFoundException:未找到处理Intent的活动{act = android.intent.action.VIEW dat = file:/// data /data/com.davidgoemans.myapp/files/current.png}

不管我将uri模式更改为什么(例如content://,file://,media://,image://)。


一种方法是实现一个上下文提供程序,让其他应用程序访问您的数据。

创建一个新类,其中包含:

public class FileContentProvider extends ContentProvider {
   private static final String URI_PREFIX = "content://uk.co.ashtonbrsc.examplefilecontentprovider";

   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");
   }

}

将内容提供者添加到您的AndroidManifest.xml中:

<provider android:name=".FileContentProvider" android:authorities="uk.co.ashtonbrsc.examplefilecontentprovider" />

然后,您应该可以在ACTION_VIEW意图中使用"content://uk.co.ashtonbrsc.examplefilecontentprovider/" + the full path to the image


选项#1:创建一个ContentProvider以将文件提供到应用程序的私有文件区域,然后对该content://使用ACTION_VIEW Intent content:// Uri

选项2:将文件移动到SD卡上,并在Uri上使用ACTION_VIEW Intent ,并使用适当的MIME类型。 Android不会自动将文件扩展名与MIME类型相关联,因此您需要告诉Intent Uri指向哪种MIME类型。 这是通过ContentProvider “自动”处理的。


您的图像位于您的应用程序沙箱内,因此您应该使用ContentProvider为其他应用程序提供对图像数据的外部访问。 请记住,在Android中,预安装的应用程序的优先级不会高于第三方应用程序 - 即使您想使用默认应用程序,您仍然必须授予您的数据权限。

否则,请查看Camera应用程序中Gallery活动的IntentFilter标签,以了解可用于使用默认查看器打开图像的Intent

链接地址: http://www.djcxy.com/p/36739.html

上一篇: Android Image Viewer from App

下一篇: Java Gregorian calendar to specific format