-2
votes
0answers
28 views

How to scan a document and save it as pdf in android? [closed]

I'm working on an app that I need to take a photo of it with the camera and convert it to PDF file. Something like camScanner app, I don't need OCR, just a high quality document so I can print it ...
-1
votes
1answer
156 views

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 ...
-2
votes
1answer
86 views

how to open from my a .doc file with another app android [closed]

I am trying to open a file. Doc with uri: else if ( path.getLastPathSegment().contains("doc") ) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(path, ...
-3
votes
1answer
219 views

How can I display a .docx file in an app? [closed]

From what I've read its possible if you do it via WebView. The thing is I need to grab the file locally, I don't have internet connection. How can I use WebView to display the document offline? Code ...
0
votes
2answers
144 views

Doc and image file not opening in android

I am trying to open files using intent action but i can't for pdf and image files For image all application going to crash (including gallery app) For doc/docx i am using office suite but gives ...
2
votes
1answer
128 views

generate Doc for android app in eclipse

hi i m trying to create java doc of my app, i done all comment in java file but when i generate a doc from eclipse(select project->Project->Generate JavaDoc..) the Doc is generate properly but some ...
1
vote
2answers
242 views

how to parse .doc to .html for Android

i used apache poi lib but it parsed with style classnames. i need without class for android. Here's my code: HWPFDocumentCore wordDocument = WordToHtmlUtils.loadDoc(input); ...
1
vote
3answers
573 views

How to read .doc file in SD card in Android? [duplicate]

Possible Duplicate: how to read doc and excel file in android? I have a .doc file saved on my sdcard. I need to read the content of .doc file and show it in a TextView. Can anyone please ...
0
votes
1answer
99 views

What's the best mobile app for creating a word doc that allow insertion of photos

I may be asking in the wrong forum but looking at the number of geeks here. Why not? I would like to ask if anyone knows of a Apple/Android word app that allows a user to insert photos taken by the ...
1
vote
4answers
7k views

Android how to open a .doc extention file?

Is there any possible way to open a .doc extention file ? If possible then please tell me how to do it. Thanx
0
votes
0answers
164 views

How to Generate a JavaDoc for a Android Library Project that includes the Already available documentation of the jar that the library project is using

I am developing a android library which would be distributed as ".jar" . My library project includes a already available jar in it. so now i would like to make a documentaion for my library which can ...
2
votes
2answers
222 views

Convert Screen contents to Doc format and then let user download that doc on phone

I am working on an application in which a user is allowed to fill up the form only once and next time when ever user views that form it should be in doc type and can be downloaded on its phone. I do ...
0
votes
1answer
154 views

Android xml parsing missing tags

I am trying to parse a xml file using dom parser. The xml fles contains lots of missing tags. What i want to do is that , if i get any missing tag( like in example below 2nd artist tag do not contain ...
1
vote
2answers
561 views

Create an output document from Android App

I have an android app where I will be capturing various information in different forms and storing into the SQL lite database for tracking/viewing purposes. I want to give the option of exporting the ...
1
vote
1answer
205 views

Is it possible to convert .doc to Spannables

Is there anyway you can convert a .doc .docx to a spannable text. I have looked through through the internet and unfortunately I dont think its possible but I thought I might as well throw out the ...
1
vote
2answers
392 views

how to open another app in a tabhost / how to open a word doc within a tabhost of android?

i've been trying to create an app that could open multiple activities with the help of the tabhost. one of the support is i would like to open a word document within my app. i know how to open one ...
9
votes
7answers
2k views

How can we open files like ppt, doc, pps, rtf, etc. in Android?

Are there classses in Android that can open different kind of files like pps, ppt, docs, rtf, etc.? Please provide links.
0
votes
2answers
1k views

Android Display .Doc File in WebView?

In my app,I have link http://mymobilece.com/api/api_getexammaterials.php?id=28, I want to view in webview ,I try with google document viewer its work fine But i need it without google document ...