Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to read a PDF file in android. I placed my PDF files in the assets folder.

How can i read the PDF file from there?

PDF Reader Link

I have checked the above link but it does not work for me. It gives me an error saying that the Activity was not found.

And I also want to open a PDF file in WebView. So is it possible to read PDF in WebView?

share|improve this question
why is it not working? what error do you get? paste the stacktrace and a relevant snippet of code, please. – Cristian Sep 30 '10 at 13:37
I do not want to open application from another application. I want to read pdf file in webview. – Nishant Shah Sep 30 '10 at 14:06
Should be closed, not programming/development related. This question belongs on android.stackexchange.com – Chris Conway Sep 30 '10 at 14:26
If it says Activity not found... have you listed your Activity in AndroidManifest.xml? – Felix Sep 30 '10 at 14:27

3 Answers

up vote 7 down vote accepted

You need to have a application which can support that mimetype and open it. In your device/emulator that app is not installed so it is throwing error

share|improve this answer
Thanks for the quick reply. But if i want to open a PDF file through WebView, how can i read that PDF file. – Nishant Shah Sep 30 '10 at 13:54
You cant read a PDF file through WebView. Try it yourself, open the browser and google for a pdf. Try to open it... you will be prompted to download it and open it with another application... – WarrenFaith Sep 30 '10 at 14:11
Yes you are right. Another alternative i found out that convert pdf pages into png and display them in webview. – Nishant Shah Sep 30 '10 at 19:20

u can download PDFbox API to read PDF in android try this link: http://pdfbox.apache.org/download.html#pdfbox

share|improve this answer
As I understood PDFBox does not support the Android plattform due to references to awt and swing. – Janusz Jun 22 '12 at 13:35

Another great solution to read pdf.

private void openBook() {
    File file = new File(mRealPath);
    Uri path = Uri.fromFile(file);
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    intent.setDataAndType(path, getString(R.string.application_type));
    try {
        startActivity(intent);
    } catch (ActivityNotFoundException e) {
        Toast.makeText(FirstTab.this, 
                getString(R.string.no_application_found), 
                Toast.LENGTH_SHORT).show();
    }
}
share|improve this answer
Is it works to read pdf ?? and what is "application_type" ? – iDroid Explorer Nov 11 '11 at 7:31
I think Your code works fine. But will you please tell me what is that mRealPath ? I want the value of the mRealPath. – iDroid Explorer Nov 11 '11 at 12:40
@iDroid mRealPath is the path of your Pdf file and "application_type" is applications. – Abhan Jan 10 '12 at 12:54
its returning no application found exception...!!!! can u help me..????!!!!!! – SilentKiller Feb 15 '12 at 6:04
@Azharahmed: Your device should have installed the "ThinkOffice". – Abhan Feb 20 '12 at 8:42
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.