将webview置于工具栏协调器布局

时间:2016-03-30 22:39:27

标签: android webview toolbar android-toolbar android-coordinatorlayout

我在协调器布局中有一个webview和appbar。我的工具栏与我的webview的某些部分重叠,在滚动时,工具栏被隐藏,因此显示工具栏隐藏的webview的隐藏部分。我希望我的webview位于工具栏下方,并在隐藏工具栏时匹配父级。如何进行操作? >

    <?xml version="1.0" encoding="utf-8">

 <android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
      android:background="#ffffff"
      xmlns:app="http://schemas.android.com/tools"
      android:fitsSystemWindows="true"
 android:layout_width="match_parent"
android:layout_height="match_parent"
           android:id="@+id/coordinatorLayout"


>  
     < android.support.design.widget.AppBarLayout
 android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:id="@+id/appbar"

>

<android.support.v7.widget.Toolbar
    android:layout_height="?attr/actionBarSize"
    android:layout_width="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:elevation="4dp"
    app:layout_scrollFlags="scroll|enterAlways"
    android:background="#e0e0e0"
    app:titleTextColor="#FFFFFF"
    app:popupTheme="@style/MyParentTheme.PopupOverlay"

    android:id="@+id/toolbar"


    />

     </   android.support.design.widget.AppBarLayout>

<com.kenyanews.inception.NestedWebView


    android:id="@+id/webview"
    android:layout_width="match_parent"
              android:layout_height="match_parent"
    android:background="#55ff0000"
app:layout_behavior="@string/     appbar_scrolling_view_behavior" />

  </android.support.design.widget.CoordinatorLayout>

1 个答案:

答案 0 :(得分:0)

隐藏工具栏的另一种方法是:

为了隐藏工具栏,您可以执行以下操作:

toolbar.animate()。translationY(-toolbar.getBottom())。setInterpolator(new AccelerateInterpolator())。start();

希望它可以帮助你