首页 文章

如何在模拟器上显示Map

提问于
浏览
2

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

唯一的自定义更改是从 google_maps_api.xml 复制URL(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'
}

截图

好像我错过了一些东西;我只是不知道它是什么 .

1 回答

  • 2

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

相关问题