Webview 在 Fragment Android Studio 中不起作用
Posted
技术标签:
【中文标题】Webview 在 Fragment Android Studio 中不起作用【英文标题】:Webview Not Working in Fragment Android Studio 【发布时间】:2018-09-13 17:23:46 【问题描述】:我已经尝试了所有方法,我的视图在我的 Fragment
中不起作用,谁能帮助我
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
View view=inflater.inflate(R.layout. fragment_one, container, false);
mWebView = (WebView) view.findViewById(R.id.webview);
mWebView.loadUrl("https://google.com");
// Enable javascript
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
// Force links and redirects to open in the WebView instead of in a browser
mWebView.setWebViewClient(new WebViewClient());
return view;
【问题讨论】:
什么问题?你在activity中添加了fragment 发布 xml 布局 别忘了在清单文件中添加权限<uses-permission android:name="android.permission.INTERNET" />
我确实将权限添加到 Manifest 文件
【参考方案1】:
覆盖片段中的 onViewCreated 方法并调用 mWebView.loadUrl("https://google.com");
【讨论】:
【参考方案2】:这样做:-
mWebView = (WebView) view.findViewById(R.id.webview);
mWebView.setWebViewClient(new WebViewClient());
// Enable Javascript
WebSettings webSettings = mWebView.getSettings();
webSettings.getSettings().setLoadsImagesAutomatically(true);
webSettings.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
webSettings.setJavaScriptEnabled(true);
mWebView.loadUrl("https://www.google.com");
有关更多基本信息,您可以从以下链接获取指南:-
https://www.chupamobile.com/tutorial-android/fragment-in-android-tutorial-with-example-using-webview-291 https://www.survivingwithandroid.com/2013/03/android-fragment-tutorial-webview-example.html https://developer.android.com/reference/android/webkit/WebViewFragment.html【讨论】:
我刚刚尝试复制并粘贴此内容,但现在 mWebView 显示为红色,并显示“无法解析符号” @J.Tulloch 你能分享你的teamviewer详细信息吗以上是关于Webview 在 Fragment Android Studio 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章
Android中Fragment装载WebView 返回键设置问题
Android中Fragment装载WebView 返回键设置问题
ProgressBar 没有出现在位于 Fragment 的 WebView 中,如何在 WebView android 中显示 ProgressBar?