で達成できると思いますNestedScrollingChild
NestedScrollingParent
。
しかし、私はそれらを本当に理解することはできません.誰が私を助けることができます!
プロダクトマネージャーはデザインにこだわります。
には、「TabLayout」とScrollView
が含まれています。LinearLayout
ViewPager
ViewPager
2をfragment
含む、RecyclerView
または 2 だけを含むRecyclerView
。
ScrollView
Bottom までスクロールすると、 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>