I've making a module export HTML to another data format on Android.
When searching about WebView on Android, I turn into the solution exporting to Picture because the WebView supports this job by method:
WebView.capturePicture()
The captured picutre is fine & full of the web pages I've tried (except some very long websites and I've not concerned on this yet)
But now, the problem I'm facing is that the whole exported picture usually long and is not paging. If it is printed out, the page breaking is not controlled, text lines (at that time, they are image data) at the bottom or top of a page may be broken in the middle.
So, question now is that Is there a way to insert the page break before or after the exporting to gain some more acceptable page breaking results?
Before exporting: i. set options for capturePicture or use some tricks like that? ii. insert page break into web content (HTML)?
After exporting: use some image processing library on Android to break result into pages?