8

在此处输入图像描述

我认为可以通过NestedScrollingChild NestedScrollingParent.

但我不能真正理解他们。谁能帮帮我!

产品经理坚持设计。

ScrollView包含一个,一个“ LinearLayoutTabLayout”和一个ViewPager

contains ViewPager2fragment包含RecyclerView或仅包含 2 。RecyclerView

ScrollView滚动到底部时,RecyclerView可以滚动到底部。

RecyclerView滚动到 Top 时,ScrollView可以滚动到 Top。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
        <TextView
            android:layout_width="match_parent"
            android:layout_height="1000dp" />
        <TableLayout
            android:layout_width="match_parent"
            android:layout_height="60dp"></TableLayout>
        <android.support.v4.view.ViewPager
            android:layout_width="match_parent"
            android:layout_height="match_parent"></android.support.v4.view.ViewPager>
    </LinearLayout>
</ScrollView>
4

2 回答 2

6

只需将 ScrollView更改为android.support.v4.widget.NestedScrollView

如果这不起作用,请发布您的 xml

于 2015-11-20T09:20:42.820 回答
2

ِ你可以这样做,但是使用这种类型的布局一点都不好

首先你需要添加“wrap_content” abilty ViewPager 和 RecyclerView's

ViewPagerRecyclerView

现在您可以轻松使用滚动视图,将所有项目放入其中

如果您在用户滚动或某些项目在滚动中可见时想要一些效果或某些东西,您可以获得项目的位置,然后在滚动视图的“OnScrollChangedListener”上创建监听器

于 2015-11-18T16:35:57.670 回答