ScrollView不会滚动片段

时间:2016-03-06 01:59:04

标签: android android-layout android-fragments scrollview

我搜索了我的问题,并在stackoverflow中阅读了类似的问题,但我没有解决任何问题。

我有一个带有coordinatorLayout(main.xml)的布局和一个带有relativeLayout(fragment.xml)的片段

  

main.xml中

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

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:paddingRight="16dp"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/AppTheme.PopupOverlay">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:layout_weight="1">
                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="40dp"
                    android:text="FRAGMENT TITLE"
                    android:textSize="20sp"
                    android:textColor="@color/colorWhite"
                    android:id="@+id/main_toolbar_title"
                    android:gravity="center_vertical" />
            </LinearLayout>
        </LinearLayout>
    </android.support.v7.widget.Toolbar>

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:background="@color/colorWhite"
        android:layout_width="match_parent"
        android:layout_height="60dp" />
</android.support.design.widget.AppBarLayout>

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

  

fragment.xml之

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:background="#f3f3f3">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

        <android.support.v7.widget.CardView
            android:id="@+id/card_view"
            android:layout_gravity="center"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            card_view:contentPadding="1dp"
            card_view:cardCornerRadius="2dp">

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

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="66dp"
                    android:textAllCaps="false"
                    android:text="Button Title"
                    android:textSize="18sp"
                    android:textColor="#404040"/>
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="66dp"
                    android:textAllCaps="false"
                    android:text="Button Title"
                    android:textSize="18sp"
                    android:textColor="#404040"/>
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="66dp"
                    android:textAllCaps="false"
                    android:text="Button Title"
                    android:textSize="18sp"
                    android:textColor="#404040"/>
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="66dp"
                    android:textAllCaps="false"
                    android:text="Button Title"
                    android:textSize="18sp"
                    android:textColor="#404040"/>
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="66dp"
                    android:textAllCaps="false"
                    android:text="Button Title"
                    android:textSize="18sp"
                    android:textColor="#404040"/>
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="66dp"
                    android:textAllCaps="false"
                    android:text="Button Title"
                    android:textSize="18sp"
                    android:textColor="#404040"/>
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="66dp"
                    android:textAllCaps="false"
                    android:text="Button Title"
                    android:textSize="18sp"
                    android:textColor="#404040"/>
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="66dp"
                    android:textAllCaps="false"
                    android:text="Button Title"
                    android:textSize="18sp"
                    android:textColor="#404040"/>

            </LinearLayout>
        </android.support.v7.widget.CardView>
    </LinearLayout>
</ScrollView>
</RelativeLayout>

如您所见,我在scrollView中有更多按钮但没有滚动。视图分页器中的ui元素,我首先认为是因为查看分页器,但我测试了它test_fragment.xml,它运行得很好。

当我按下并按住视图寻呼机时,

scrollView滚动(例如,我的第一个标签)  并向上/向下移动手指

  

test_fragment.xml

<android.support.design.widget.CoordinatorLayout
android:id="@+id/quickreturn_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">

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

有什么问题?

提前致谢。

1 个答案:

答案 0 :(得分:6)

当您使用AppBarLayout时,它不适用于简单的ScrollView。你应该使用NestedScrollview代替。你没有必要在ScrollView里面RelativeLayout。请尝试使用RelativeLayout删除NestedScrollView

我想这会有所帮助。