英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论