2

ToolBar下にスクロールした後に非表示にするための私の試みは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/coordinatorLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways" />


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

    <WebView
        android:layout_width="match_parent"
        android:id="@+id/webview"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:layout_height="match_parent">

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

WebView下にスクロールするときに必要な、非ToolBar表示。

どうすればそれができますか?

いつものように、私のスタイルは次のとおりです。

Theme.AppCompat.Light.NoActionBar

4

1 に答える 1

0

WebView を NestedScrollView に配置します。

<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <WebView
            android:id="@+id/web_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />
    </android.support.v4.widget.NestedScrollView>

しかし、それ以降、横軸のスクロールはほとんどありません。適切な解決策が見つかった場合は、コメントを投稿してください。

于 2015-10-05T07:26:29.037 に答える