我正在使用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>
应用程序运行但没有任何反应.为什么会这样?
解决方法:
因为您没有设置正确的文件名.看这里:
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();
}