无法在ViewPager中垂直滚动

时间:2019-04-18 20:46:01

标签: android scroll android-viewpager scrollview

几天来,我一直在尝试使用Fragments和ViewPager来实现TabLayout。在显示片段并在选项卡之间滑动时,我无法在ViewPager当前显示的片段中垂直滚动。

我在SO上找到了一些解决方案,建议在片段或活动布局中实现(Nested)ScrollViews以使内容滚动。我已经尝试了几种方法(但都没有用)-我得出的结论是我做错了,到现在,我仍无法弄清楚。

我正在使用以下代码来获得当前结果:

activity.xml

stdio.h

fragment.xml:

<?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:fitsSystemWindows="true"
    android:layout_width="match_parent"

    android:layout_height="match_parent"
    tools:context=".MainActivity">

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

        <RelativeLayout
            android:id="@+id/scV"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fitsSystemWindows="true">

            <android.support.design.widget.TabLayout
                android:id="@+id/caj_tab_layout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignBottom="@id/door_img [exists, not pasted]"
                android:elevation="6dp"
                android:minHeight="?attr/actionBarSize"

                android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                android:visibility="visible" />

            <android.support.v4.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_alignParentBottom="true"
                android:layout_below="@id/door_img"
                android:layout_height="match_parent"
                android:fillViewport="true">

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

                    <android.support.v4.view.ViewPager
                        android:id="@+id/pager"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:background="@color/white"
                        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
                </LinearLayout>
            </android.support.v4.widget.NestedScrollView>

        </RelativeLayout>


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

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

设置标签页布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
    tools:context=".Test">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest"
        android:textSize="80sp" />

</FrameLayout>

我希望能够在片段中滚动,但是,这是不可能的。 我错过了xml标签吗? 非常感谢您的帮助。

0 个答案:

没有答案