WebView重叠工具栏

时间:2018-07-14 04:35:11

标签: android webview android-toolbar

我正在创建一个应用程序,但我的工具栏和Webview遇到了一些问题。我的Web视图在顶部重叠了我的工具栏。我该如何解决?

这是我的示例屏幕截图:

activity_main:
activity_main

RecyclerView

您可以粘贴工具栏_顶部和工具栏_机器人的代码

1 个答案:

答案 0 :(得分:0)

尝试这样:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ececec"
tools:context=".MainActivity">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#663300"
        android:minHeight="?attr/actionBarSize"
         />

<!--STARTWEBVIEW -->
<WebView
    android:id="@+id/webview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@id/toolbar1"
    android:layout_below="@id/appBarLayout"
    android:visibility="visible" />
<!--ENDWEBVIEW-->

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:background="#663300"
    android:minHeight="?attr/actionBarSize" />

</RelativeLayout>