0

CollapseToolbarLayoutを使用しているため、必要なNestScrollviewにあるビューページに配置されたwebviewスクロールを有効にする必要があります。しかし、私はそれをスクロールできません。 WebViewスクロールを除くすべての作品。どこが間違っていますか?ここでNestedScrollView内のViewPager内のWebViewが垂直方向にスクロールしない

enter image description here

は、私の活動のマークアップです:ViewPagerマークアップのための

<?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" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_read_article" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@color/colorBackgroundLight" 
    android:fitsSystemWindows="true" 
    tools:context="ru.pwrg.revolution.activities.ReadArticleActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/app_bar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:fitsSystemWindows="true" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:id="@+id/toolbar_layout" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:fitsSystemWindows="true" 
      app:contentScrim="@color/colorBackgroundDark" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

      <ImageView 
       android:id="@+id/article_cover" 
       android:layout_width="match_parent" 
       android:layout_height="200dp" 
       app:srcCompat="@color/colorBackgroundDark" /> 

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

     <android.support.design.widget.TabLayout 
      android:id="@+id/tabs" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:background="@color/colorPrimaryDark" /> 


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

     <android.support.v4.view.ViewPager 
      android:id="@+id/pager" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:fillViewport="true" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 

    </android.support.v4.widget.NestedScrollView> 

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

WebViewのフラグメント:

<WebView android:id="@+id/article_webview" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_marginTop="8dp" 
    xmlns:android="http://schemas.android.com/apk/res/android" /> 

答えて

3

NestedScrollViewにあなたのWebViewラップ:

<android.support.v4.widget.NestedScrollView 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<WebView android:id="@+id/article_webview" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:layout_marginTop="8dp" /> 

</android.support.v4.widget.NestedScrollView> 

NestedScrollViewは、CoordinatorLayoutと一緒に動作し、正しくスクロールを処理する方法を知っています。

1

わずか1回

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

    <android.support.v4.view.ViewPager 
     android:id="@+id/pager" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:fillViewport="true" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 

</android.support.v4.widget.NestedScrollView> 
fillViewportを使用してlayout_behavior
関連する問題