I (like many others) have followed the web browsing guide, but I cannot load pages. It looks like this: "Webpage Unavailable"
I made sure that the emulator has Internet access, and to eliminate the problem with the emulator, I tried to install it on my phone, which led to the same behavior.
I read that the biggest problem is that people do not put the INTERNET
permission in my manifest file, which I tried to put as a child of different manifest elements, but to no avail. Does anyone know why I cannot download this?
Here is my code:
Manifest:
<application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".AndroidTestActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <uses-permission android:name="android.permission.INTERNET" /> </activity> </application> </manifest>
AndroidTestActivity
public class AndroidTestActivity extends Activity { WebView webview; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); webview = (WebView) findViewById(R.id.webview); webview.getSettings().setJavaScriptEnabled(true); webview.loadUrl("http://www.google.com/m"); Intent intent = getIntent();
Thanks!
source share