如何在模拟器上显示Map

时间:2018-01-29 06:53:29

标签: android android-studio android-maps-v2

在Android Studio中,我创建了一个Map Activity项目;所以,没有自定义代码。

唯一的自定义更改是从 google_maps_api.xml _(https://console.developers.google.com/flows/enableapi?apiid=maps_android_backend&keyType=CLIENT_SIDE_ANDROID&r=)_复制网址并使用它来创建API密钥。

Android Studio:3.0.1 仿真器:带有API 25的Nexus 5X

Build.gradle文件


apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "xxxx.xxx.xxxx"
        minSdkVersion 19
        targetSdkVersion 26
        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"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.google.android.gms:play-services-maps:11.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

截图

enter image description here

似乎我错过了一些东西;我只是不知道它是什么。

1 个答案:

答案 0 :(得分:2)

尝试在您的手机中运行。有时模拟器无法正确加载地图,这就是为什么它显示空白地图而不加载根。