我现在正在Android中学习显示谷歌地图。只是一个非常简单的应用程序,用于在主要活动中显示谷歌地图。
地图显示在真实硬件(三星Galaxy C5)中没有问题。但它无法在Android模拟器中显示地图图层。
我尝试了API 19,23和25,结果相同。请看截图。谁知道为什么?感谢。
这是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.zhongjiefan.mapsapp">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<permission
android:name="com.example.zhongjiefan.mapsapp.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-permission android:name="com.example.zhongjiefan.mapsapp.permission.MAPS_RECEIVE" />
<uses-permission android:name="com.google.android.providers.gsf.permissions.READ_GSERVICES"/>
<uses-feature android:glEsVersion="0x00020000"
android:required="true" />
<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">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data android:name="com.google.android.maps.v2.API_KEY"
android:value="--removed--"/>
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
</application>
</manifest>
这是我的activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
tools:context="com.example.zhongjiefan.mapsapp.MainActivity">
<fragment
android:id="@+id/mapFragment"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="368dp"
android:layout_height="495dp"
android:layout_margin="8dp"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absoluteX="8dp"/>
</LinearLayout>
这是我的MainActivity.java
package com.example.zhongjiefan.mapsapp;
import android.app.Dialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.Toast;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GoogleApiAvailability;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.OnMapReadyCallback;
public class MainActivity extends AppCompatActivity implements OnMapReadyCallback {
GoogleMap mGoogleMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if(googleServicesAvailable()) {
Toast.makeText(this, "Perfect!", Toast.LENGTH_LONG).show();
setContentView(R.layout.activity_main);
initMap();
} else {
// No google maps layout
}
}
private void initMap() {
MapFragment mapFragment = (MapFragment) getFragmentManager().findFragmentById(R.id.mapFragment);
mapFragment.getMapAsync(this);
}
public boolean googleServicesAvailable() {
GoogleApiAvailability api = GoogleApiAvailability.getInstance();
int isAvailable = api.isGooglePlayServicesAvailable(this);
if(isAvailable == ConnectionResult.SUCCESS) {
return true;
}
else if(api.isUserResolvableError(isAvailable)) {
Dialog dialog = api.getErrorDialog(this, isAvailable, 0);
dialog.show();
}else {
Toast.makeText(this, "Can't connection to play services", Toast.LENGTH_LONG).show();
}
return false;
}
@Override
public void onMapReady(GoogleMap googleMap) {
mGoogleMap = googleMap;
}
}
答案 0 :(得分:1)
您应该使用支持Google API的模拟器。 所以创建一个新的模拟器如下 创建AVD时,请选择&#34; Google API&#34;目标。 API级别可以是您想要的任何级别。没有APK可供安装。您需要下载&#34; Google API&#34;首先,如果您没有安装这些软件,请先在SDK Manager中使用。
答案 1 :(得分:0)
仍然不知道根本原因。但是,一旦我更换了计算机并运行它。它工作正常。可能是由图形卡驱动程序或其他东西引起的。
答案 2 :(得分:0)
我解决了。 我也有你的问题,当我创建我的项目一切都很好,我的地图工作绝对正常。但是在2天之后突然我的模拟器中的地图被破坏了,它显示了位置名称,后面没有任何地图层,当我点击地图或用鼠标触摸它时,模拟器关闭。在手机上的apk文件一切都很好,地图工作正常。 当我从另一台PC远程连接到我的电脑并再次运行程序时,一切正常并正常工作。试试这个。