我想在Webview中打开以下URL,但是它不起作用
URL:-https://ebiz.licindia.in/D2CPM/#DirectPay
我的webView
mywebview=(WebView)findViewById(R.id.web);
WebSettings webSettings=mywebview.getSettings();
webSettings.setJavaScriptEnabled(true);
valfromact1=getIntent().getExtras().getString("Value");
mywebview.loadUrl(valfromact1);
mywebview.setWebViewClient(new WebViewClient());
mywebview.getSettings().setLoadWithOverviewMode(true);
mywebview.getSettings().setUseWideViewPort(true);
webSettings.setDisplayZoomControls(false);
webSettings.setSupportZoom(true);
mywebview.getSettings().setPluginState(WebSettings.PluginState.ON);
mywebview.getSettings().setAllowFileAccess(true);
mywebview.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_INSET);
mywebview.getSettings().setAllowContentAccess(true);
mywebview.getSettings().setDomStorageEnabled(true);
mywebview.getCertificate();
答案 0 :(得分:0)
webview_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/help_webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="none"
/>
在活动文件中
webView = (WebView)findViewById(R.id.help_webview);
webView.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("https://ebiz.licindia.in/D2CPM/#DirectPay");
确保清单文件中启用了INTERNET权限。
希望这会对您有所帮助。谢谢