Open Url in webView in android

后端 未结 3 495
没有蜡笔的小新
没有蜡笔的小新 2020-12-15 06:35

How to open this link in webView. This is running on browser but it does not run in webView android. Please give solution.

相关标签:
3条回答
  • 2020-12-15 06:57

    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"
    />
    
    0 讨论(0)
  • 2020-12-15 06:57

    Test 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 讨论(0)
  • 2020-12-15 07:03

    Check this out, it has worked for me...but i dont know whether it got any side effects or not but 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");
    

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

    0 讨论(0)
提交回复
热议问题