我正在开发一个应用程序,该应用程序目前有一个主要活动,协调器布局和一些片段弹出和弹出。我想要实现的是在谷歌地图片段中,从后面弹出一张卡片或类似物品以显示标记详细信息,而不受标记标题/片段的限制。
目前的协调员布局是:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/maincontainer"
android:layout_gravity="end"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
<android.support.design.widget.FloatingActionButton
....
/>
<android.support.design.widget.FloatingActionButton
....
/>
我附上另一个应用程序的示例以便更清楚。