monyag
monyag

Reputation: 820

Docx/Pdf/etc and WebView

How I can laod doc/docx/pdf and xls files into WebView?

I tried to use loadData(myBase64, "mime type for example application/pdf", "base64), I tried to use loadUrl("file///...") - no effect. Or how I can view this files in my application? (without external programs)

...And I CAN'T to use web readers.

Upvotes: 0

Views: 1752

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006819

How I can laod doc/docx/pdf and xls files into WebView?

You don't. WebView does not have the ability to display these file types. WebView handles HTML, CSS, JS, some image formats, and the like.

Or how I can view this files in my application? (without external programs)

You spend a lot of money on libraries to do this.

Upvotes: 1

Related Questions