my code is:
Dim itent As Intent
itent.Initialize(itent.ACTION_VIEW,"http://xxx.com/xxx.pdf")
itent.SetType("application/pdf")
StartActivity(itent)
When i this code, it's throw a exception:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=http://xxx.com/xxx.pdf typ=application/pdf flg=0x20000 }
What is the wrong?
Dim itent As Intent
itent.Initialize(itent.ACTION_VIEW,"http://xxx.com/xxx.pdf")
itent.SetType("application/pdf")
StartActivity(itent)
When i this code, it's throw a exception:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=http://xxx.com/xxx.pdf typ=application/pdf flg=0x20000 }
What is the wrong?