AndroidPDFViewer - 无法在我的应用程序中打开pdf文档

时间:2017-02-16 14:28:04

标签: java android pdf assets

我正在使用this库。我正在尝试加载位于资产和PDF中的PDF它没有加载。这是我加载它的地方:

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.github.barteksc.pdfviewer.PDFView;

public class MainActivity extends AppCompatActivity {

    private PDFView pdfView;
    private String nameOfPDF = "" + R.string.name_of_pdf;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        pdfView = (PDFView) findViewById(R.id.pdfView);

        pdfView.fromAsset(nameOfPDF).load();
    }
}

这是相关的XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="ru.webant.projects.mypdfviewer.MainActivity">

    <com.github.barteksc.pdfviewer.PDFView
        android:id="@+id/pdfView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</RelativeLayout>

运行应用程序但没有任何反应。为什么会这样?

2 个答案:

答案 0 :(得分:2)

因为您没有设置正确的文件名。看这里:

private String nameOfPDF = "" + R.string.name_of_pdf;

这导致:nameOfPDF = SomeIdAsString。您想要呼叫的是getString(),如此:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    pdfView = (PDFView) findViewById(R.id.pdfView);

    pdfView.fromAsset(getString(R.string.name_of_pdf)).load();
}

答案 1 :(得分:1)

private String nameOfPDF = "" + R.string.name_of_pdf;

除非您碰巧将资产命名为大型半随机数,否则这是不正确的。

如果R.string.name_of_pdf应该是具有PDF文件名称的字符串资源的标识符,请使用:

private String nameOfPDF = getString(R.string.name_of_pdf);

This sample project演示了如何使用AndroidPdfViewer来显示资产以及其他地方的PDF。