我在Android中设置谷歌地图v2。我正在使用新技术添加依赖项,使用此链接。“Android Studio with Google Play Services”
在同步,清理项目和重建项目之后,它做得很好。但是我找不到MapActivity。什么似乎是问题?
的build.gradle
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
defaultConfig {
minSdkVersion 8
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:+'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:4.2.42'
}
答案 0 :(得分:9)
MapActivity
是Google Maps Android v1 API的一部分,现已弃用。
使用Google Play服务库,您将使用Google Maps Android API v2 ,然后MapActivity
将不再可用。您需要使用MapFragment
。
您可以在official documentation中看到有关如何使用MapFragment
的简介。