Reputation: 2926
I am developing a andoid application which need to print some documents.Documents may be in different format like docx,ppt,xls. Now how can i render that other format in printable format in android ?
Thanks in advance !
Upvotes: 0
Views: 2476
Reputation: 109237
For development, I think you should use some third party library
or open office source
for developing such kind of application.
Or you can also use apache's doc4j open source project
for development. Some libraries are in .so format so you have to build it using NDK(JNI).
A demo example for reading .Doc file using apache.poi reading data from the .Doc file by using Apache POI api
Upvotes: 1
Reputation: 121669
You'll need one or more converters :)
Here are a couple of options:
This might be ideal for you:
Upvotes: 0