Android - What are the good reporting tools to design and generate reports from SQLite Data Source? [closed] Android - What are the good reporting tools to design and generate reports from SQLite Data Source? [closed] sqlite sqlite

Android - What are the good reporting tools to design and generate reports from SQLite Data Source? [closed]


Take a look at PDFReporter at www.pdfreporting.comThere is also a open source project "PDFReporter" on sourceforge as well.


Currently there is no inbuilt reporting framework in Android @Rajdeep also mantioned it in his answer. So now we have these options:

1- Export data to a server, generate the reports on the server & download the reports back to your device.

2- Generate pdf type reports using tools like iText.

I am implementing the 2nd option. Please see this good example of how to create pdf documents.


There is no inbuilt reporting framework in Android. You will have to write custom code to generate the relevant reports.

One option is to backup the data to a server and use third party reporting tools on it.