Android Fragments 我想在我的应用程序中打开.pdf文件

r7xajy2e  于 2023-08-06  发布在  Android
关注(0)|答案(1)|浏览(128)

我想在Android工作室的帮助下,在Android应用程序中打开一个文档文件。这怎么可能?我是否需要使用Web视图?我尝试了许多Web源代码,但文件被其他应用程序打开

xmjla07d

xmjla07d1#

您可以使用Intents打开pdf文件。

File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/example.pdf");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);

字符串
如果您不喜欢这种方法,并希望在应用程序中打开pdf文件,您可以使用自定义PDF查看器
在你的gradle文件 compile 如下:第一个月
在您
同步您的项目后,转到您的xml文件并添加PDF Viewer**。

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


现在,在你的 .java 文件中,你将导入:

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import com.github.barteksc.pdfviewer.PDFView;
import com.github.barteksc.pdfviewer.listener.OnLoadCompleteListener;
import com.github.barteksc.pdfviewer.listener.OnPageChangeListener;
import com.github.barteksc.pdfviewer.scroll.DefaultScrollHandle;
import com.shockwave.pdfium.PdfDocument;
 
import java.util.List;


你将 * 实现 * 两个方法:OnPageChangeListenerOnLoadCompleteListener
主代码:

public static final String SAMPLE_FILE = "android_tutorial.pdf"; //your file path
    PDFView pdfView;
    Integer pageNumber = 0;
    String pdfFileName;
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
 
        pdfView= (PDFView)findViewById(R.id.pdfView);
        displayFromAsset(SAMPLE_FILE);
    }
 
    private void displayFromAsset(String assetFileName) {
        pdfFileName = assetFileName;
 
        pdfView.fromAsset(SAMPLE_FILE)
                .defaultPage(pageNumber)
                .enableSwipe(true) 
                .swipeHorizontal(false)
                .onPageChange(this)
                .enableAnnotationRendering(true)
                .onLoad(this)
                .scrollHandle(new DefaultScrollHandle(this))
                .load();
    }
 
 
    @Override
     public void onPageChanged(int page, int pageCount) {
        pageNumber = page;
    }
 
 
    @Override
    public void loadComplete(int nbPages) {
        PdfDocument.Meta meta = pdfView.getDocumentMeta();
        printBookmarksTree(pdfView.getTableOfContents(), "-");
 
    }
 
    public void printBookmarksTree(List<PdfDocument.Bookmark> tree, String sep) {
        for (PdfDocument.Bookmark b : tree) {
            if (b.hasChildren()) {
                printBookmarksTree(b.getChildren(), sep + "-");
            }
        }
    }


就是这样!
先在谷歌上搜索一下,如果你没有找到什么,写下你的问题!

相关问题