我正在使用this庫。我正在嘗試加載位於資產&中的PDF,但它未加載。這裏是我加載:AndroidPDFViewer - 無法在我的應用程序中打開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>
應用程序運行,但沒有任何反應。這是爲什麼發生?