gpt4 book ai didi

android - 从哪里开始 : Creating a PDF in my Android application

转载 作者:行者123 更新时间:2023-11-29 01:06:46 24 4
gpt4 key购买 nike

我正在创建一个 Android 应用程序,其最终目标是能够根据从用户那里收集的数据生成 PDF。哪里是开始我的研究的好地方?是否有我应该研究的 API 或工作室插件?

谢谢,周末愉快!

最佳答案

你需要android.graphics.pdf库引用页是https://developer.android.com/reference/android/graphics/pdf/package-summary.html你可以使用下面的代码

 // create a new document
PdfDocument mydocument = new PdfDocument();

// crate a page description
PageInfo mypageInfo = new PageInfo.Builder(new Rect(0, 0, 100, 100), 1).create();

// start a page
Page mypage = mydocument.startPage(mypageInfo);

// draw something on the page
View content = getContentView();
content.draw(mypage.getCanvas());

// finish the page
mydocument.finishPage(mypage);
. . .
// add more pages
. . .
// write the document content
mydocument.writeTo(getOutputStream());

// close the document
mydocument.close();

关于android - 从哪里开始 : Creating a PDF in my Android application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46385424/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com