Android内部显示PDF文件

同样使用网上流行的类库
1、添加依赖(在你的module中不是project中),添加后别忘记同步

//pdf
compile 'com.github.barteksc:android-pdf-viewer:2.6.1'

2、使用在xml文件中添加该布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.mazhan.android_fundfriend.activitys.LoadPDFActivity">

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

3、实现

package com.mazhan.android_fundfriend.activitys;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;

import com.github.barteksc.pdfviewer.PDFView;


import com.github.barteksc.pdfviewer.listener.OnPageChangeListener;
import com.mazhan.android_fundfriend.R;

import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

/**
 * 显示PDF的页面
 */
public class LoadPDFActivity extends AppCompatActivity {

    private static final String TAG = "LoadPDFActivity--TAG:";
    private PDFView pdfView;
    private String path;

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

        pdfView = findViewById(R.id.pdfView);
        path = getIntent().getStringExtra("url");
        if (!TextUtils.isEmpty(path)) {
            new LoadPdfThread().start();
        }
    }

    class LoadPdfThread extends Thread {

        @Override
        public void run() {
            super.run();
            try {
                URL url = new URL(path);
                HttpURLConnection connection = (HttpURLConnection) url.openConnection();
                if (connection.getResponseCode() == 200) {
                    final InputStream inputStream = connection.getInputStream();
                    //主线程更新界面
                    runOnUiThread(new Runnable() {
                        @Override
                        public void run() {
                            if (inputStream != null) {
                                pdfView.fromStream(inputStream).defaultPage(0)//默认页面
                                        .enableDoubletap(true)
                                        .swipeHorizontal(true)//是不是横向查看
                                        .onPageChange(new OnPageChangeListener() {
                                            @Override
                                            public void onPageChanged(int page, int pageCount) {

                                            }
                                        })
                                        .enableSwipe(true)
                                        .load();

                            }
                        }
                    });


                }
            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

我这里没有处理内存泄露,使用了内部类,而且流没有关闭,这里如果直接关闭流,可能导致页面不显示

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值