Reputation: 593
The default Browser application on my HTC Hero v1.5 just keeps coming up with the standard "Web page not available" page when I try to display html page from my android application
Upvotes: 1
Views: 284
Reputation: 2352
You need add the INTERNET permission in you Manifest file:
<manifest xlmns:android...>
...
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>
more info here:
http://developer.android.com/guide/topics/manifest/manifest-intro.html
Upvotes: 1