8

ここに画像の説明を入力

で達成できると思いますNestedScrollingChild NestedScrollingParent

しかし、私はそれらを本当に理解することはできません.誰が私を助けることができます!

プロダクトマネージャーはデザインにこだわります。

には、「TabLayout」とScrollViewが含まれています。LinearLayoutViewPager

ViewPager2をfragment含む、RecyclerViewまたは 2 だけを含むRecyclerView

ScrollViewBottom までスクロールすると、 Bottom までスクロールRecyclerViewできます。

上にRecyclerViewスクロールすると、上にScrollViewスクロールできます。

<?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

2

ِそれはできますが、このタイプのレイアウトを使用するのはまったく良くありません

最初に、「wrap_content」機能の ViewPager と RecyclerView を追加する必要があります。

ViewPagerRecyclerView

スクロールビューを簡単に使用できるようになり、すべてのアイテムをその中に入れます

ユーザーのスクロールまたはスクロール中に一部のアイテムが表示されるときに何らかの効果または何かが必要な場合は、アイテムの位置を取得してから、スクロールビューの「OnScrollChangedListener」でリスナーを作成できます

于 2015-11-18T16:35:57.670 に答える