2
我正在創建一個Android應用程序,其最終目標是能夠從用戶收集的數據中生成PDF。哪裏是開始我的研究的好地方?是否有我應該研究的API或工作室插件?從哪裏開始:在我的Android應用程序中創建PDF
謝謝你,祝你週末愉快!
我正在創建一個Android應用程序,其最終目標是能夠從用戶收集的數據中生成PDF。哪裏是開始我的研究的好地方?是否有我應該研究的API或工作室插件?從哪裏開始:在我的Android應用程序中創建PDF
謝謝你,祝你週末愉快!
你需要android.graphics.pdf圖書館參考頁是https://developer.android.com/reference/android/graphics/pdf/package-summary.html 和u可以使用下面的代碼
// 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();
或U可以使用https://stackoverflow.com/questions/25392664/generate-pdf-in -android-without-any-3rd-party-library –
感謝你們倆。我期待着玩這個。最好的祝願! –
歡迎你 –