我得到了CoordinatorLayout,其结构类似于:
<CoordinatorLayout>
<AppBarLayout>
<CollapsingToolbarLayout
app:layout_scrollFlags="scroll|snap">
...
</CollapsingToolbarLayout>
... almost all elements here have scroll|enterAlways|snap scrollflags
<TabLayout />
</AppBarLayout
<ViewPager />
</CoordinatorLayout>
ViewPager有2个片段,第一个只有2个简单的TextViews嵌套在NestedScrollView中 - &gt; LinearLayout并且工作得很好。
整个coordinatorLayout功能之一是可折叠工具栏,向下滚动时会有更多内容。
第二个是内部谷歌地图视图的碎片,表现得很奇怪。
场景1. - 地图片段里面只有MapView - 地图是全尺寸的,但是当向下滚动工具栏不再折叠时,相反你在地图内滚动,这是我猜想的,我只是不知道如何编写自定义MapView来解决它。
场景2 - MapView位于NestedScrollView内部的LinearLayout内 - 当向下滚动时,工具栏现在会折叠,但由于某种原因,它变得非常小
该地图片段中的每个元素都匹配父级大小。
完整地图片段:
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.google.android.gms.maps.MapView
android:id="@+id/details_map_view"
android:layout_height="match_parent"
android:layout_width="match_parent" />
</LinearLayout>
CoordinatorLayout中的ViewPager也有match_parent大小:
<android.support.v4.view.ViewPager
android:id="@+id/details.viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
答案 0 :(得分:2)
在nestedScrollView
上使用android:fillViewport="true"