共计 1242 个字符,预计需要花费 4 分钟才能阅读完成。
Android PDF 开发:android-pdfview
android-pdfview 应用比较简单,要害的中央是 PDFView,将 PDFView 作为像 Android 的 ImageView 或者 TextView 一样写进 xml 布局文件:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<com.joanzapata.pdfview.PDFView
android:id="@+id/pdfView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
而后在 Java 下层代码间接加载 pdf 文件资源装载进去即可:
package zhangphil.pdfview;
import com.joanzapata.pdfview.PDFView;
import com.joanzapata.pdfview.listener.OnPageChangeListener;
import android.app.Activity;
import android.os.Bundle;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
PDFView pdfView = (PDFView) findViewById(R.id.pdfView);
// 在我这个测试例子中,当时筹备一个叫做 sample.pdf 的 pdf 大文件放到 assets 目录下。// 从 assets 文件目录下读取名为 sample.pdf 的文件,缺省把该 pdf 定位到第一页。pdfView.fromAsset("sample.pdf").defaultPage(1).onPageChange(new OnPageChangeListener() {
@Override
public void onPageChanged(int page, int pageCount) {
// 当用户在翻页时候将回调。Toast.makeText(getApplicationContext(), page + "/" + pageCount, Toast.LENGTH_SHORT).show();}
}).load();}
}
正文完