我希望在webview上方有一个顶栏或工具栏,但当它呈现时,webview会导致它的所有内容隐藏和闪烁。我在这里尝试了很多解决方案,但没有一个对我有效。我将webview放在scrollview中,但没有起作用。我重写了ShouldOverrideUrloading froom webview,但仍然没有任何东西对我有效。我一直在试图找到解决办法,但没有取得任何成功。是什么导致了这个问题?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@android:color/transparent"
android:id="@+id/layout"
android:orientation="vertical"
android:theme="@style/SplashTheme"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".WebViewActivity">
<!--Top Headerbar-->
<!--Top Headerbar-->
<LinearLayout
android:id="@+id/topbar"
android:transitionName="webview"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:gravity="center_vertical"
android:padding="16dp">
<ImageView
android:stateListAnimator="@null"
android:foreground="?attr/selectableItemBackground"
android:id="@+id/backbtn"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="6dp"
android:src="@drawable/backbtn" />
<Space
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textColor="#424242"
android:textSize="17sp" />
<Space
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<ImageView
android:id="@+id/toggleKeyboardButton"
android:foreground="?attr/selectableItemBackground"
android:clickable="true"
android:stateListAnimator="@null"
android:layout_width="40dp"
android:layout_marginRight="10dp"
android:layout_height="40dp"
android:layout_centerInParent="true"
android:padding="6dp"
android:src="@drawable/keyboardon" />
<ImageView
android:id="@+id/toggleModeButton"
android:foreground="?attr/selectableItemBackground"
android:clickable="true"
android:layout_width="40dp"
android:layout_height="40dp"
android:stateListAnimator="@null"
android:layout_centerInParent="true"
android:padding="6dp"
android:src="@drawable/lightmode" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_weight="1"
android:background="@color/white"
android:orientation="vertical"
android:layout_height="match_parent">
<WebView
android:id="@+id/webview"
android:layout_weight="1"
android:minHeight="200dp"
android:layout_width="match_parent"
android:visibility="gone"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="match_parent"
android:id="@+id/splashScreen"
android:visibility="visible"
android:gravity="center"
android:layout_weight="1"
android:layout_gravity="center_vertical"
android:layout_height="wrap_content"
android:orientation="vertical">
<ProgressBar
android:layout_width="wrap_content"
android:indeterminateTint="#000000"
android:layout_gravity="center_horizontal|bottom"
android:layout_marginTop="80dp"
android:visibility="visible"
android:layout_height="wrap_content">
</ProgressBar>
</LinearLayout>
</LinearLayout>
</LinearLayout>
我希望webview像这样在上面显示topbar,但它会在最后一个屏幕截图中消失。
这就是我想要的
无论是否有任何交互,都会得到这样的结果。我想把它修好。正如您在屏幕截图中看到的,顶部栏消失,导致按钮被隐藏。
我希望webview不会从其位置溢出,从而导致topbar隐藏。我希望无论webview处于何种状态,都始终显示topbar。用户与topbar和webview的交互是什么。他们必须各就各位。
暂无答案!
目前还没有任何答案,快来回答吧!