android 顯示 PDF 檔案,androidpdf

來源:互聯網
上載者:User

android 顯示 PDF 檔案,androidpdf

1、開源項目地址 :

  https://github.com/JoanZapata/android-pdfview

 

2、引用

    compile 'com.joanzapata.pdfview:android-pdfview:1.0.4@aar'

 

3、布局檔案

<?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:layout_width="match_parent"    android:layout_height="match_parent"    android:fitsSystemWindows="true"    tools:context="zyj.com.myapplication.MainActivity">    <com.joanzapata.pdfview.PDFView        android:id="@+id/pdfView"        android:layout_width="match_parent"        android:layout_height="match_parent"        /></RelativeLayout>

 

使用

package zyj.com.myapplication;import android.graphics.Canvas;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.widget.Toast;import com.joanzapata.pdfview.PDFView;import com.joanzapata.pdfview.listener.OnDrawListener;import com.joanzapata.pdfview.listener.OnLoadCompleteListener;import com.joanzapata.pdfview.listener.OnPageChangeListener;import java.io.File;public class MainActivity extends AppCompatActivity implements OnPageChangeListener        , OnLoadCompleteListener  , OnDrawListener {    private PDFView pdfView ;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        pdfView = (PDFView) findViewById( R.id.pdfView );        //從assets目錄讀取pdf         displayFromAssets("bao.pdf");        //從檔案中讀取pdf        displayFromFile( new File( "fileName"));    }    private void displayFromAssets(String assetFileName ) {        pdfView.fromAsset(assetFileName)   //設定pdf檔案地址                .defaultPage(6)         //設定預設顯示第1頁                .onPageChange(this)     //設定翻頁監聽                .onLoad(this)           //設定載入監聽                .onDraw(this)            //繪圖監聽                .showMinimap(false)     //pdf放大的時候,是否在螢幕的右上方產生小地圖                .swipeVertical( false )  //pdf文檔翻頁是否是垂直翻頁,預設是左右滑動翻頁                .enableSwipe(true)   //是否允許翻頁,預設是允許翻頁               // .pages( 2 , 3 , 4 , 5  )  //把2 , 3 , 4 , 5 過濾掉                .load();    }    private void displayFromFile( File file ) {        pdfView.fromFile(file)   //設定pdf檔案地址                .defaultPage(6)         //設定預設顯示第1頁                .onPageChange(this)     //設定翻頁監聽                .onLoad(this)           //設定載入監聽                .onDraw(this)            //繪圖監聽                .showMinimap(false)     //pdf放大的時候,是否在螢幕的右上方產生小地圖                .swipeVertical( false )  //pdf文檔翻頁是否是垂直翻頁,預設是左右滑動翻頁                .enableSwipe(true)   //是否允許翻頁,預設是允許翻                // .pages( 2 , 3 , 4 , 5  )  //把2 , 3 , 4 , 5 過濾掉                .load();    }    /**     * 翻頁回調     * @param page     * @param pageCount     */    @Override    public void onPageChanged(int page, int pageCount) {        Toast.makeText( MainActivity.this , "page= " + page +                " pageCount= " + pageCount , Toast.LENGTH_SHORT).show();    }    /**     * 載入完成回調     * @param nbPages  總共的頁數     */    @Override    public void loadComplete(int nbPages) {        Toast.makeText( MainActivity.this ,  "載入完成" + nbPages  , Toast.LENGTH_SHORT).show();    }    @Override    public void onLayerDrawn(Canvas canvas, float pageWidth, float pageHeight, int displayedPage) {       // Toast.makeText( MainActivity.this ,  "pageWidth= " + pageWidth + "       // pageHeight= " + pageHeight + " displayedPage="  + displayedPage , Toast.LENGTH_SHORT).show();    }}

 

4、項目地址 ( android Studio 環境)

 http://download.csdn.net/detail/yanzi2015/9341525

    

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.