NestedSCrollView未在CoordinatorLayout中完全滚动

时间:2017-05-07 18:00:08

标签: android android-viewpager android-coordinatorlayout android-nestedscrollview

我在NestedSCrollView内有一个CoordinatorLayout。在NestedSCrollView中有一个ViewPager。我在其中放入了包含WebView的片段视图。问题是,如果WebView中的文本很长,则会被剪切,我无法滚动。怎么解决这个问题?

<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/nest_scrollview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <LinearLayout

        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMode="scrollable"
            app:tabGravity="fill"/>

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


    </LinearLayout>

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

这是片段xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<WebView
android:id="@+id/appearance"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
    />

problem

1 个答案:

答案 0 :(得分:0)

问题是ViewPager不支持wrap_content。所以它必须精确或match parent

另一种解决方案是覆盖OnMeasure的{​​{1}}方法。看看这个answer