harveyslash
harveyslash

Reputation: 6034

Display contents of docx file in android activity

I have a docx file inside my android app. I want to view its contents on an activity , page wise.

say, I want to view page no 2, i want something like

display(DOCX_NAME,2);   

also, on display, there should not be any re-formatting(I want the docx page to be displayed as if a snapshot was taken of it)

how do i go about it? also, its a 200 page docx, and I will use the display part quite a few times during runtime.

Upvotes: 0

Views: 3395

Answers (1)

edi9999
edi9999

Reputation: 20574

They is no concept of a page in the docx format: The pages completely depend on the implementation of the wordviewer.

However, JasonPluText has created a demo showing AndroidDocxToHTML

See this question for more details: how to Show or Read docx file

Upvotes: 1

Related Questions