Google 地图未显示在我的应用程序中

Google Map not showing up in my app

我最近一直在更新我的应用程序,但现在我的 google 地图没有显示。它只是显示空白,只有加号和减号按钮,没有其他任何东西。

我的地图片段是:

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;

public class BreweryTappedMap extends Fragment {

    public BreweryTappedMap(){}

    String beerId = "";
    GoogleMap mMap;
    private SupportMapFragment fragment;
    private GoogleMap map;
    String userID;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        View rootView = inflater.inflate(R.layout.activity_brewmap, container, false);
        setHasOptionsMenu(true);
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
        String userName = prefs.getString("userName", null);
        userID = prefs.getString("userID", null);
        return rootView;
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        FragmentManager fm = getChildFragmentManager();
        fragment = (SupportMapFragment) fm.findFragmentById(R.id.map);
        if (fragment == null) {
            fragment = SupportMapFragment.newInstance();
            fm.beginTransaction().replace(R.id.map, fragment).commit();
        }
    }

    @Override
    public void onResume() {
        super.onResume();
        if (map == null) {
            map = fragment.getMap();
            String url = "myMap";

            new GetVisitedBreweries(getActivity(), map).execute(url);        }
    }
}

xml布局是:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <RelativeLayout
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    </RelativeLayout>
</RelativeLayout>

我的 android 清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.mike.beerportfoliomaterial" >

    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>

    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

    <!-- Permission to write to external storage -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.CALL_PHONE" />


    <application
        android:allowBackup="true"
        android:icon="@drawable/logo"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity android:label="@string/app_name" android:name="com.example.mike.beerportfoliomaterial.MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>

        <receiver android:name="com.example.mike.beerportfoliomaterial.HelloWidget" android:label="Beer of the Day">
            <intent-filter> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
                <action android:name="android.appwidget.action.APPWIDGET_ENABLED" />
            </intent-filter>

            <meta-data android:name="android.appwidget.provider" android:resource="@xml/hello_widget_provider" />

        </receiver>

        <receiver android:name="com.example.mike.beerportfoliomaterial.SearchWidget" android:label="Search ">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
                <action android:name="android.appwidget.action.APPWIDGET_ENABLED" />
            </intent-filter>

            <meta-data android:name="android.appwidget.provider" android:resource="@xml/search_widget" />

        </receiver>

        <activity android:label="@string/app_name" android:name="com.example.mike.beerportfoliomaterial.LogIn">
            <intent-filter>
                <category android:name="android.intent.category"/>
            </intent-filter>
        </activity>

        <activity android:label="@string/app_name" android:name="com.example.mike.beerportfoliomaterial.Register" android:screenOrientation="portrait">
            <intent-filter>
                <category android:name="android.intent.category"/>
            </intent-filter>
        </activity>

        <activity android:label="@string/app_name" android:name="com.example.mike.beerportfoliomaterial.MainDraw" android:screenOrientation="portrait">
            <intent-filter>
                <category android:name="android.intent.category"/>
            </intent-filter>
        </activity>
        <activity android:label="@string/app_name" android:name="com.example.mike.beerportfoliomaterial.MainDrawer2" android:screenOrientation="portrait">
            <intent-filter>
                <category android:name="android.intent.category"/>
            </intent-filter>
        </activity>
        <meta-data android:name="com.crashlytics.ApiKey" android:value="myKey"/>

        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="myMapsKey"/>

    </application>
</manifest>

我认为您还需要在您的清单应用程序标记中启用此 Google 播放服务:

     <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

以下是将其添加为库的方法:

http://developer.android.com/google/play-services/setup.html

对我来说,添加这个在我的 /app/gradle 依赖项中有效:

编译'com.google.android.gms:play-services:+'

如果您得到 @integer/google_play_services_version,这通常意味着您还没有将 Google Play 服务库添加到您的项目中。

我遇到了同样的问题,这是因为 API 密钥。默认情况下,我使用 debug.keystore 生成 SHA-1 key 并且我从 Google 得到了他的 API 密钥,我在开发时使用了它。应用程序签名后,地图将无法使用,因此您必须使用与应用程序签名相同的 keystore 文件生成 SHA-1 密钥。

您需要使用证书进行构建。在您这样做之前,google 不会 "waste" 它的地图资源在您的应用程序上 :)。

这篇link应该能帮到你。

您是否在 libs 文件夹中复制了所需的库?