我想模仿谷歌街景布局。 我有一个带有单个地图的viewpager。我想在每个页面的底部显示一个回收器,然后从底部拖动+滚动它。 这是期望的结果(我不需要隐藏操作栏):
您是否知道要使用哪种布局以从底部效果进行相同的拖动/滚动?
我设法为myviewpager设置了一张地图:
但是当我在我的viewpager片段中添加recyclerView时,它显然隐藏了地图:
现在我的标签片段只由recyclerview
组成<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:visibility="invisible"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
tools:listitem="@layout/fragment_topic_list" />
我尝试使用底页,但它正在捕捉地图事件,我无法控制滚动(惯性)。