下面的链接没有在 android 中打开webview
。我是 android 新手。有人帮我在 webview 中打开这个链接。
https://mobile.twitter.com/SCHOOLinSITES
我尝试通过以下方式打开它
XML
<WebView android:id="@+id/webView51"
android:layout_width="match_parent"
android:layout_height="match_parent">
</WebView>
活动
WebView w=(WebView)findViewById(R.id.webView51);
w.getSettings().setDomStorageEnabled(true);
w.getSettings().setJavaScriptEnabled(true);
w.loadUrl("https://mobile.twitter.com/SCHOOLinSITES");