ViewPager中垂直ScrollView内的标签不会#39;垂直滚动

时间:2014-08-08 20:12:12

标签: android android-viewpager scrollview pagerslidingtabstrip

我在ViewPager中有垂直ScrollView内的标签。水平滑动成功执行。当我尝试垂直滑动时,没有任何反应。

FragmentActivity布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/background_all_screen">

<RelativeLayout
    android:id="@+id/RelativeLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/border_white"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_alignParentBottom="true"
        android:id="@+id/llButtons">
        <Button
            android:id="@+id/btnBack"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/all"
            android:onClick="onClickAll"
            style="@style/button.blue"
            android:layout_weight="1" />

    </LinearLayout>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@id/llButtons"
        android:fillViewport="true">

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

            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                android:orientation="vertical" android:layout_width="match_parent"
                android:layout_height="match_parent">

                <com.astuetz.PagerSlidingTabStrip
                    android:id="@+id/tabs"
                    android:layout_width="match_parent"
                    android:layout_height="48dip"
                    style="@style/PagerSlidingTabStrip"
                    app:pstsShouldExpand="true"/>

                <android.support.v4.view.ViewPager
                    android:id="@+id/pager"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"/>

            </LinearLayout>

        </LinearLayout>
    </ScrollView>

</RelativeLayout>
</LinearLayout>

我可能在ScrollView和ViewPager之间存在冲突。

更新 ScrollViews在片段中的解决方案很不错,但我想要这样的东西:

User can see tabs User can't see tabs

用户无法在第二个屏幕截图中看到标签内容。

2 个答案:

答案 0 :(得分:0)

你真的需要在scrollview中有一个视图寻呼机吗?我的建议是使用scrollviews作为viewpager片段的布局容器。

答案 1 :(得分:0)

我认为您应该以这种方式更改布局:

因为你在scrollView中没有任何小部件,我认为你的片段布局中的所有内容都会将滚动视图移动到您发送到viewpager的每个片段的布局并将其作为根。所以这样每个片段都会垂直滚动,你也可以通过viewpager来改变它们。

希望有所帮助!