内容提供程序无法在所有设备上完全运行

发布于 2024-12-25 13:57:05 字数 1596 浏览 2 评论 0原文

我已经实现了以下内容,并且它可以在 HTC Desire (Android 2.2) 上轻松运行。

Uri uri = Uri.parse("content://com.package.app.AssetProvider/"+"document.pdf");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(uri, "application/pdf");
try 
{
   startActivity(intent);
} 
catch (ActivityNotFoundException e) 
{
   Toast.makeText(this, 
        "You have PDF reader installed!", 
            Toast.LENGTH_SHORT).show();
}

在我的内容提供程序中,我实现了 openFile 方法:

@Override
public ParcelFileDescriptor openFile(Uri uri, String mode)
throws FileNotFoundException {
            Log.d(TAG, " openFile ");
    try {
        AssetManager am = context.getAssets();
        InputStream is = am.open(uri.getLastPathSegment());
        File dir = new File("data/data/"+ PACKAGE_NAME +"/files/");
        dir.mkdirs();
        File file = new File("data/data/"+ PACKAGE_NAME +"/files/outFile.pdf");
        file.createNewFile();
        OutputStream out=new FileOutputStream(file);
        byte buf[]=new byte[1024];
        int len;
        while((len=is.read(buf))>0)
            out.write(buf,0,len);
        out.close();
        is.close();
        parcel = ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_WRITE);
    }
    catch (Exception e) {
        Log.e("Exception",e.toString());
    }

    return parcel;
}

问题是在 Samsung Galaxy S II (Android 2.3.5)、HCT Wildfire (2.2.1) 上未调用方法 openFile() )和 HTC Sensation(Android 2.3.4)。但 onCreate() 方法会在每个设备上调用。

有谁可以帮忙吗?

I've implemented the following and it works painless on HTC Desire (Android 2.2).

Uri uri = Uri.parse("content://com.package.app.AssetProvider/"+"document.pdf");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(uri, "application/pdf");
try 
{
   startActivity(intent);
} 
catch (ActivityNotFoundException e) 
{
   Toast.makeText(this, 
        "You have PDF reader installed!", 
            Toast.LENGTH_SHORT).show();
}

And in my content provider I've implemented the openFile method:

@Override
public ParcelFileDescriptor openFile(Uri uri, String mode)
throws FileNotFoundException {
            Log.d(TAG, " openFile ");
    try {
        AssetManager am = context.getAssets();
        InputStream is = am.open(uri.getLastPathSegment());
        File dir = new File("data/data/"+ PACKAGE_NAME +"/files/");
        dir.mkdirs();
        File file = new File("data/data/"+ PACKAGE_NAME +"/files/outFile.pdf");
        file.createNewFile();
        OutputStream out=new FileOutputStream(file);
        byte buf[]=new byte[1024];
        int len;
        while((len=is.read(buf))>0)
            out.write(buf,0,len);
        out.close();
        is.close();
        parcel = ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_WRITE);
    }
    catch (Exception e) {
        Log.e("Exception",e.toString());
    }

    return parcel;
}

The problem is that the method openFile() is not called on Samsung Galaxy S II (Android 2.3.5), HCT Wildfire (2.2.1) and HTC Sensation (Android 2.3.4). But the method onCreate() is called on every device.

Anyone that can help, please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文