Android StreetView无法加载

时间:2016-11-13 15:44:00

标签: android maps

我在应用中使用StreetView时出现此错误。 一切都很好,除了地图没有在片段中加载它只是一个黑屏。

  

E / DynamiteModule:无法加载DynamiteLoader:   java.lang.ClassNotFoundException:没找到类   " com.google.android.gms.dynamite.DynamiteModule $ DynamiteLoaderClassLoader"

1 个答案:

答案 0 :(得分:0)

这是答案。 你的观点正在走出屏幕的一边。在主布局中,您可能忘了给定位。请遵循这种类型的布局。在主要的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>