小编典典

应用程式中的Android Image Viewer

java

我正在尝试启动一个图像,该图像将使用内置的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):开始活动:目的{act =
android.intent.action.VIEW dat =
file:///data/data/com.davidgoemans.myapp/files/current .png} 10-11
13:09:24.367:ERROR /
myapp(2166):发生了异常android.content.ActivityNotFoundException:找不到用于处理Intent的活动{act
= android.intent.action.VIEW dat = file:/// data
/data/com.davidgoemans.myapp/files/current.png}

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


阅读 209

收藏
2020-11-13

共1个答案

小编典典

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

创建一个包含以下内容的新类:

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" />

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

2020-11-13