gpt4 book ai didi

安卓 : Error Snack bar not showing correctly with Map View

转载 作者:行者123 更新时间:2023-12-04 17:37:49 27 4
gpt4 key购买 nike

这是xml布局

    <android.support.design.widget.CoordinatorLayout
android:id="@+id/map_location_picker_main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.mapbox.mapboxsdk.maps.MapView
android:id="@+id/map_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.design.widget.CoordinatorLayout>

这是输出:

enter image description here

我使用 CoordinatorLayout 作为我的 xml 文件ma​​pbox 布局的根来显示 map 。我不知道发生了什么,请帮助我。

最佳答案

只需在 MapView 之上创建一个 View 并在其中显示 snackbar :))

布局:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:mapbox="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">

<com.mapbox.mapboxsdk.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<View
android:id="@+id/snackbarView"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

Activity :

val snackbar = Snackbar.make(snackbarView, "Message :))", Snackbar.LENGTH_LONG)
snackbar.show()

关于安卓 : Error Snack bar not showing correctly with Map View,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55937694/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com