gpt4 book ai didi

Android StreetView 未加载

转载 作者:太空狗 更新时间:2023-10-29 14:45:40 27 4
gpt4 key购买 nike

当我在我的应用程序中使用 StreetView 时出现此错误。一切都很好,除了 map 没有加载它只是 fragment 中的黑屏。

E/DynamiteModule: Failed to load DynamiteLoader: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader"

最佳答案

答案在这里。您的 View 超出了屏幕的一侧。在主布局中,您可能忘记给出方向。请遵循此类布局。在主要的 LinearLayout 中,我给出了方向,所以现在 Mapview 出现在屏幕上。它会解决您的问题。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<include layout="@layout/toolbar"/>
<com.google.android.gms.maps.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>

关于Android StreetView 未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40575659/

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