Open online pdf file through android intent?

前端 未结 12 1501
醉话见心
醉话见心 2020-12-04 21:53

Currently I have a pdf url, and I would like to simply using the intent to open it, however, it does not work if I put the url in intent

12条回答
  •  北海茫月
    2020-12-04 22:57

    The actual error

    android.content.ActivityNotFoundException: No Activity found to 
    handle Intent 
    {
     act=android.intent.action.VIEW 
     dat=http://oshc.zizsoft.com/oshc_testing.pdf typ=application/pdf 
    }
    

    This says that:

    1. You "broadcast" and Intent to let the system try to open a PDF file
    2. The system does not find any application registered to be able to handle this type of file (PDF)

    You just need a PDF viewer of some kind.

    Solution

    Get a PDF reader app or use @Mahendra's solution.

提交回复
热议问题