我想通了。我需要的是一个底页对话框。这是我用作灵感来源的非常 useful guide。
步骤 1
在 `app.gradle` 中实现材质组件库:
implementation 'com.google.android.material:material:1.3.0'
步骤 2
在 res->layout 中创建您选择的布局。我的看起来像这样:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_gravity="bottom">
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:text="Rent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
布局与底部对齐。
第三步
定义一个实例化 BottomSheetDialog 的方法:
private void showBottomSheetDialog() {
final BottomSheetDialog bottomSheetDialog = new BottomSheetDialog(getContext());
bottomSheetDialog.setContentView(R.layout.MY_LAYOUT_NAME);
AppCompatButton btn = bottomSheetDialog.findViewById(R.id.btn_view);
bottomSheetDialog.show();
}
第四步
这一步是额外的,如果您想查看如何通过按下 GoogleMap 标记来调用 BottomSheetDialog。
确保处理 MapSupportFragment 的类实现 OnMapReadyCallback、GoogleMap.OnMarkerClickListener 和(如果您需要标记集群)ClusterManager.OnClusterItemClickListener。覆盖必要的方法:
@Override
public boolean onMarkerClick(Marker marker) {
showBottomSheetDialog();
return false;
}
如果你需要集群,不要忘记在@onMapReady() 中添加:
map.setOnCameraIdleListener(clusterManager);
map.setOnMarkerClickListener(clusterManager);
clusterManager.setOnClusterItemClickListener(this);
瞧!