作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目标是能够将 PDF 文件添加到应用程序的“ Assets ”文件夹,并让用户在 PDF 应用程序(ezPDFReader、Adobe Reader 等)中打开该 PDF。这并不完全简单,因为 PDF 首先需要从 Assets 文件夹复制到设备存储中。如果设备上没有 PDF 查看器应用程序,我们需要显示一条警告消息并引导他们到 Play 商店下载一个。
最佳答案
这是对我有用的解决方案。这是一个名为 PdfHandler
的类,使用方法如下 - 只需将 pdf 文件放在 assets 文件夹中。如果可用,它将在 PDF 查看器应用程序中打开它,如果没有,则显示警告消息并将用户引导至 Adobe Reader Play Store 条目。
PdfHandler pdf = new PdfHandler(this);
pdf.openPdf("document.pdf");
PdfHandler 类。您应该将文本资源移动到 Android 字符串资源中。
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.res.AssetManager;
import android.net.Uri;
import android.util.Log;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
/**
* Handles the opening of PDF files, using whatever app the user has installed to view PDFs
* If no PDF app installed, shows a warning and directs them to appropriate Store listing
*/
public class PdfHandler {
public PdfHandler(Context context) {
this.context = context;
}
public void openPdf(String filename) {
if (isPdfAppAvailable()) {
copyPdfAndOpenIt(filename);
} else {
showPdfWarning();
}
}
private void copyPdfAndOpenIt(String filename) {
try {
File file = copyPdfFromAssetsToStorage(filename);
startPdfIntent(file);
} catch (Exception e) {
Log.e("PdfHandler", "Error handling the PDF file", e);
}
}
private File copyPdfFromAssetsToStorage(String filename) throws Exception {
String tempFilename = "temp.pdf";
AssetManager is = context.getAssets();
InputStream inputStream = is.open(filename);
String outFilename = context.getFilesDir() + "/" + tempFilename;
FileOutputStream outputStream = context.openFileOutput(tempFilename, Context.MODE_WORLD_READABLE);
copy(inputStream, outputStream);
outputStream.flush();
outputStream.close();
inputStream.close();
return new File(outFilename);
}
private void copy(InputStream fis, FileOutputStream fos) throws IOException {
byte[] b = new byte[8];
int i;
while ((i = fis.read(b)) != -1) {
fos.write(b, 0, i);
}
}
private boolean isPdfAppAvailable() {
PackageManager packageManager = context.getPackageManager();
Intent testIntent = new Intent(Intent.ACTION_VIEW);
testIntent.setType("application/pdf");
List list = packageManager.queryIntentActivities(testIntent, PackageManager.MATCH_DEFAULT_ONLY);
return list.size() > 0;
}
private void startPdfIntent(File file) {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(file);
intent.setDataAndType(uri, "application/pdf");
context.startActivity(intent);
}
private void showPdfWarning() {
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setMessage("Please install an app to view PDF file");
builder.setCancelable(false);
builder.setPositiveButton("Install", getButtonListener());
builder.setNegativeButton("Cancel", null);
builder.setTitle("PDF Viewer");
AlertDialog alert = builder.create();
alert.show();
}
private DialogInterface.OnClickListener getButtonListener() {
return new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialogInterface, int i) {
goToGooglePlayStoreEntry();
}
};
}
private void goToGooglePlayStoreEntry() {
context.startActivity(getAppListingIntent());
}
private Intent getAppListingIntent() {
Intent intent = new Intent(Intent.ACTION_VIEW);
String pdfAppPackageName = "com.adobe.reader";
intent.setData(Uri.parse("market://details?id=" + pdfAppPackageName));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
return intent;
}
private Context context;
}
关于android - 如何从 Android 应用程序(在单独的 PDF 查看器应用程序中)打开 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9995915/
我是一名优秀的程序员,十分优秀!