我正在开发一款带有导航抽屉的应用,可以显示多个屏幕。这些页面都显示在同一个Activity
内,但通过将它们扩展为包装器。
<android.support.design.widget.CoordinatorLayout
//some parameters
<include
android:id="@+id/main_container"
layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
其中一个屏幕包含WebView
。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/webview_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/app_bar_main">
<WebView
android:id="@+id/web_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.constraint.ConstraintLayout>
对于Webview,我附加了一个WebViewClient
来处理一些使用Javascript的html操作。
WebView webView = findViewById(R.id.web_view);
if (webView == null) {
inflateLayout(R.layout.layout_with_webview);
webView = findViewById(R.id.web_view);
}
webView.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(new CustomWebViewClient());
webView.loadUrl("http://www.somesite.com");
如果我在活动开始时将WebView
放入加载了setContentView()
的布局中,则所有内容都会正确加载。之后,我使用以下代码将不同的布局扩展到main_container
:
public void inflateLayout(int toinflate) {
ConstraintLayout mainLayout = findViewById(R.id.main_container);
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(toinflate, null);
mainLayout.removeAllViews();
mainLayout.addView(layout);
DrawerLayout drawer = findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
}
当我现在想要展开包含WebView
的布局时,当我调用webView.loadUrl("some url")
时,只要调用onPageFinished(...)
方法,就会显示任何内容。
现在的问题是:我做错了什么,如何使用通货膨胀附加到屏幕的WebViews。
另外:我已经尝试使用addView
添加WebView,但它无效。
答案 0 :(得分:2)
您需要重新初始化新的虚增布局参考
public void inflateLayout(int toinflate) {
ConstraintLayout mainLayout = findViewById(R.id.main_container);
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(toinflate, null);
mainLayout.removeAllViews();
mainLayout.addView(layout);
// you need to reinitialise the web view which will refer to
// the web view in newly inflated layout as
webView = findViewById(R.id.web_view);
webView.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(new CustomWebViewClient());
DrawerLayout drawer = findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
}
因为新的相关视图与活动的现有布局没有链接,因此Web视图正常加载但对屏幕没有影响
通货膨胀是昂贵的,因此有效的选择是Fragments
更新::根据约束布局,膨胀的布局必须具有适当的布局参数,因此请使用
View layout = inflater.inflate(toinflate, mainLayout);
答案 1 :(得分:-1)
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/webview_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/app_bar_main">
<WebView
android:id="@+id/web_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.constraint.ConstraintLayout>
父布局是ConstraintLayout,而子组件,即webView实际上没有有效的属性。首先在预览中检查此布局是否可以在其中看到您的网页浏览量? 如果没有尝试这些 -
<WebView
android:id="@+id/web_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>