can we create and write on pdf files in android.
I have tried itext library of java but it gives class not found exception please help.
Update
Document document = new Document(); PdfWriter.getInstance(document, new FileOutputStream(FILE)); document.open(); addMetaData(document); addTitlePage(document); addContent(document); document.close();