Open URL in webView in android

3 answers

Activity:

import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; public class WebViewActivity extends Activity { private WebView webView; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.webview); webView = (WebView) findViewById(R.id.webView1); webView.getSettings().setJavaScriptEnabled(true); webView.loadUrl("http://www.google.com"); } } 

And your XML:

 <?xml version="1.0" encoding="utf-8"?> <WebView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/webView1" android:layout_width="fill_parent" android:layout_height="fill_parent" /> 
+20
source

Check it out, it worked for me ... but I don’t know if it has any side effects or not, but it works fine with me.

  super.onCreate(savedInstanceState); WebView theWebPage = new WebView(this); theWebPage.getSettings().setJavaScriptEnabled(true); theWebPage.getSettings().setPluginState(PluginState.ON); setContentView(theWebPage); theWebPage.loadUrl("http://www.hkmytravel.com"); 

The source can be found at [ http://www.androidpanna.com/functionality/webview-open-url-webpage-within-the-android-app-when-launch-android-development]

+2
source

Check the following:

 <?xml version="1.0" encoding="utf-8"?> <WebView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/webView1" android:layout_width="fill_parent" android:layout_height="fill_parent" /> 
0
source

All Articles