繁体   English   中英

Google Maps API在Android上显示灰屏而不是地图视图

[英]Google Maps API displaying grey screen instead of map view on Android

我正在尝试在Android上显示Google地图。 当我加载活动时,我得到一个灰色屏幕,在左下角显示Google徽标。 使用虚拟模拟器以及在真实设备上也会发生这种情况。 我尝试使用其他的Api密钥,但遇到相同的问题。 我正在使用Android studio提供的Map活动。

的build.gradle(模块:APP)

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
    compileSdkVersion 28
    defaultConfig {

        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.firebase:firebase-auth:16.1.0'
    implementation 'com.google.firebase:firebase-database:16.0.1'
    implementation 'com.google.android.gms:play-services-maps:16.0.0'
    implementation 'com.google.android.gms:play-services-location:16.0.0'

}

AndroidManifest.xml中

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

    <uses-feature
        android:name="android.hardware.sensor.stepcounter"
        android:required="true" />
    <uses-feature
        android:name="android.hardware.sensor.stepdetector"
        android:required="true" />

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="com.google.android.providers.gfs.permission.READ_GSERVICES" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        tools:ignore="GoogleAppIndexingWarning">
        <activity android:name=".Activities.LandingActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="redacted" />

        <activity
            android:name=".Activities.MapsActivity"
            android:label="@string/title_activity_maps" />
    </application>

</manifest>

Logcat处于错误模式

01-02 15:06:24.913 17090-17160/E/Google Maps Android API: Authorization failure.  Please see https://developers.google.com/maps/documentation/android-api/start for how to correctly set up the map.
01-02 15:06:24.923 17090-17160/ E/Google Maps Android API: In the Google Developer Console (https://console.developers.google.com)
    Ensure that the "Google Maps Android API v2" is enabled.
    Ensure that the following Android Key exists:
        API Key: ***
        Android Application (<cert_fingerprint>;<package_name>): ***;

在此处输入图片说明

转到Google控制台 ,尝试为Android启用Maps sdk ...

尝试将硬件传感器更改为不需要:

<uses-feature
    android:name="android.hardware.sensor.stepcounter"
    android:required="false"/>

<uses-feature
    android:name="android.hardware.sensor.stepdetector"
    android:required="false"/>

而且多年以来,不再需要此许可:

<uses-permission android:name="com.google.android.providers.gfs.permission.READ_GSERVICES" />

问题实际上源于:

apply plugin: "com.google.gms.google-services"

必须将其移动到文件的最底部。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM