NestedScrollView修复NestedScrollView内的视图顶部

问题描述 投票:1回答:1

我想将TabLayout固定在类似滚动的Instagram上方。 NestedScrollView中有没有办法做到这一点?

NestedScrollView
-- ConstraintLayout
---- OtherViews
---- TabLayout
---- ViewPager

https://i.imgur.com/G5QcqaW.png

https://gist.github.com/buraktabn/c73cd04bed6a223471834756d6f32773

android android-layout kotlin android-recyclerview android-nestedscrollview
1个回答
0
投票

您能做点什么吗:

ConstraintLayout
-- OtherViews
-- TabLayout
-- NestedScrollView
---- ViewPager

那样,ViewPager的内容将滚动吗?仅供参考。CoordinatorLayoutCollapsingToolbarLayouthttps://material.io/develop/android/components/collapsing-toolbar-layout/)可能也值得一看,这将允许用户在向上滚动时重新获得部分屏幕。

© www.soinside.com 2019 - 2024. All rights reserved.