我试图在一个非常简单的应用程序(一个只有谷歌地图活动的新项目)中显示谷歌地图,清单具有权限:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ivan.pruebamaps">
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<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">
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_maps_key" />
<activity
android:name=".MapsActivity"
android:label="@string/title_activity_maps">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我在@ string / google_maps_key中有一个有效的密钥。
它的主要活动未被触及,与在android studio中创建的相同。
public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {
private GoogleMap mMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
}
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
// Add a marker in Sydney and move the camera
LatLng sydney = new LatLng(-34, 151);
mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}
}
布局文件activity_maps也是如此:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.ivan.pruebamaps.MapsActivity" />
如果有帮助,这是我的gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.ivan.pruebamaps"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.google.android.gms:play-services-maps:10.2.0'
testCompile 'junit:junit:4.12'
}
当我执行应用程序时,我会在左下角看到一个带有空白屏幕和Google徽标的屏幕。我尝试使用模拟的nexus 5,而在三星Galaxy s6中,它们都没有效果。
答案 0 :(得分:6)
听起来您正在使用的API密钥是在另一台机器上生成的,该机器具有不同的调试密钥库。
您需要为开发人员控制台中用于API密钥的每台开发计算机的调试密钥库添加SHA1指纹。
除此之外,一旦您准备好进行签名发布构建,请确保在API密钥中使用SHA1指纹作为发布密钥库,该密钥将进入$scope.getColors = function(color, d){
console.log(d);
var c20b = d3.scale.category20();
return c20b(d.id);
};
文件的发行版本。 See here了解更多信息。
答案 1 :(得分:1)
尝试通过android sdk安装google play服务,然后重试。
这可能会有助How to download Google Play Services in an Android emulator?
答案 2 :(得分:0)
就我而言,它在真实设备上显示但在模拟器上显示为空白。这不是API关键问题,因为我尝试了一个新密钥。我查看了日志,有一条消息,
E / Google Maps Android API:Google Maps Android API v2仅支持 使用OpenGL ES 2.0及更高版本的设备
我记得AS之前曾抱怨我的GPU(Intel HD),所以我在模拟器的设置中尝试了几个OpenGL设置,但都没有奏效。也许我必须安装专用GPU或更换CPU。
答案 3 :(得分:0)
就我而言,问题出在我猜是API密钥。一旦我用生成的新密钥更改了API密钥,地图便重新联机。
答案 4 :(得分:0)
此问题是由于API密钥引起的。
步骤:
答案 5 :(得分:0)
如果您将avd(Android虚拟设备)用于您的应用,则在某些情况下,它将无法正常工作
使用对我有用的真实设备
我在主要活动中使用googlemap片段扩展了appcompatactivity 它有效!
答案 6 :(得分:0)
遇到了同样的问题,并通过从正在调试的设备上完全卸载该应用程序,然后再次安装,解决了该问题。