如何将PDF文件添加到您的Android项目中?

huangapple go评论81阅读模式
英文:

How to add pdf file into your android project?

问题

我有Android Studio的4.0.1版本。我想要使用我的程序填写一组预定的PDF表单,但我不知道如何将它们添加到我的项目中。

英文:

I have version 4.0.1 of Android studio. I'd like to use my program to fill out a set of predetermined pdf forms, but I can't figure out how to add them to my project.

答案1

得分: 0

你可以在使用资源管理器的时候添加它 res/raw/sample.pdf。您的应用程序还需要将最低API级别设置为21(Android 5.0)。

void readPDF(@RawRes int pdfResource) {
    InputStream input = getResources().openRawResource(pdfResource);
}

如果在尝试后遇到问题,请查看这篇文章,然后更新您的问题。

英文:

You can add it at using ResourceManager res/raw/sample.pdf. Your app will also need to set the minimum API level to 21 (Android 5.0).

void readPDF(@RawRes int pdfResource) {
    InputStream input = getResources().openRawResource(pdfResource);
}

Check this article and update your question if you have trouble after you tried it.

huangapple
  • 本文由 发表于 2020年8月5日 04:39:33
  • 转载请务必保留本文链接:https://go.coder-hub.com/63254733.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定