Android模拟器不显示地图

Posted

技术标签:

【中文标题】Android模拟器不显示地图【英文标题】:Android Emulator Not Showing Maps 【发布时间】:2014-12-28 14:02:20 【问题描述】:

好的,大家好,我正在开发一个使用谷歌地图的安卓应用。我按照互联网上的教程并成功完成了它,但模拟器说应用程序无法工作,因为谷歌播放库不在手机上。 1.我已经导入了google playstore库。 2.我有android 5.0的google api镜像 以下是我的代码。 这是我的清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.taxiapp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="21" />
<permission 
    android:name="com.taxiapp.permission.MAPS_RECEIVE"
    android:protectionLevel="signature"
    />
<uses-permission android:name="com.taxiapp.permission.MAPS_RECEIVE"/>
<uses-permission android:name="com.taxiapp.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="com.taxiapp.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.taxiapp.permission.READ_GSERVICES"/>
<uses-permission android:name="com.taxiapp.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="com.taxiapp.permission.ACCESS_FINE_LOCATION"/>

<uses-feature 
    android:glEsVersion="0x00020000"
    android:required="true"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

  <meta-data 
      android:name="com.google.android.maps.v2.API_KEY"
      android:value="AIzaSyAxvr6dSj58P5O4eypi8VkfdqBfoEWYtbE"
      />
  <meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
    <activity
        android:name=".HomeActivity"
        android:label="@string/app_name" >
  <!-- "@string/title_activity_home" > -->
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".QuickBook"
        android:label="@string/title_activity_quick_book" >
    </activity>

 </application>

</manifest>

这是我的布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.taxiapp.QuickBook" >

  <fragment 
      android:id="@+id/map"
      android:name="com.google.android.gms.maps.MapFragment"
      android:layout_
      android:layout_
      />

</RelativeLayout>

这是我的活动

package com.taxiapp;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;

import com.google.android.gms.maps.GoogleMap;

public class QuickBook extends Activity 
GoogleMap map;
    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_quick_book);

    

    @Override
    public boolean onCreateOptionsMenu(Menu menu) 
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.quick_book, menu);
        return true;
    

    @Override
    public boolean onOptionsItemSelected(MenuItem item) 
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) 
            return true;
        
        return super.onOptionsItemSelected(item);
    

![在此处输入图片描述][1]

这是我的项目浏览器,显示导入的 google play 库

![在此处输入图片描述][2]

我无法发布模拟器的快照,但活动打开并且视图显示“如果没有 google play 服务,此应用将无法运行,而您的手机中缺少这些服务”

我正在使用谷歌地图 api 2

【问题讨论】:

【参考方案1】:

据我记得在实施 Google 地图时,您不能使用它,因为它不支持 Google Play 服务。我最近发现了这个很酷的模拟器:http://www.genymotion.com/

也许看看它是否有帮助!

【讨论】:

感谢您的回答,但 Genymotion 是付费的,您在 eclipse 中是否有任何可行的解决方案 Genymotion 未付费。您也可以使用免费功能。只有少数功能是付费功能。 感谢康纳麦克法登的帮助。 GenyMotion 正在工作。但它也需要像 sdk 中的 avd 一样手动安装播放服务。但我不得不说 GenyMotion 比 AVD 快得多【参考方案2】:

要使用 Google 服务,您需要安装了 Google 服务的设备或虚拟机... 在您的 ADT 中创建的 VM 没有这些应用程序,您需要安装它们!

寻找差距,祝你好运!

【讨论】:

以上是关于Android模拟器不显示地图的主要内容,如果未能解决你的问题,请参考以下文章

MKMapview 在模拟器的 iOS-7.0 中不显示地图

Android模拟器谷歌地图显示错误的位置

谷歌地图可以在模拟器上工作,但不能在 React 本机 APP 的 android 设备上工作

谷歌地图视图无法在模拟器上显示

android中进去页面直接显示定位城市地图,不显示默认北京

将应用上传到 Playstore 后谷歌地图不显示