我知道我需要使用setJavaScriptEnabled(true)
,但是在遵循教程后我不确定将其放在哪里。这实际上是我的第一个应用程序。
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_webhelper_detail, container, false);
// Show the dummy content as text in a TextView.
if (mItem != null) {
((WebView) rootView.findViewById(R.id.webhelper_detail)).loadUrl(mItem.webHelper_url);
}
return rootView;
}
这是唯一使用 WebView 的块。我的问题是页面加载时没有任何可用的 javascript。我正在学习http://www.techotopia.com/index.php/An_Android_Master/Detail_Flow_Tutorial上的教程。