4

我想在 android 模拟器中显示地图。为此,我安装了 Google Play 服务并将其导入工作区并在我的项目中引用它们。但是我运行应用程序,它显示 Google Play 服务不在您的手机中。我无法理解它为什么显示。我在这里附上完整的代码。
这是我的清单文件:

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <permission
        android:name="com.example.map.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />
    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />
     <uses-permission android:name="com.example.map.permission.MAPS_RECEIVE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.map.MainActivity"
            android:label="@string/app_name" >
            <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="AIzaSyDcNgF68UPm1cNdlJmr41PGYG06z4P_NyI" />
    </application>

</manifest>

main.xml

<RelativeLayout 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: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=".MainActivity" >



    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.MapFragment" />

</RelativeLayout>

.java file is here

package com.example.map;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity 
{



    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

    }
![enter image description here][1]
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

模拟器图像 你能给我答案为什么它显示。它真的对我有帮助。

4

3 回答 3

3

第 1 点。如果您正在为 API 级别 8 开发应用程序,请使用以下代码。

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.SupportMapFragment" />

请参阅MapFragment。仅当您面向 API 12 及更高版本时才使用此类。否则,使用 SupportMapFragment。

要点 2.使用FragmentActivtiy而不是Activity扩展您的课程

私人谷歌地图谷歌地图;

    public void loadGoogleMap(){
        if(googleMap==null){
              // Getting Google Play availability status
              int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(context);
              // Showing status
              if(status!=ConnectionResult.SUCCESS){ // Google Play Services are not available
                  int requestCode = 10;
                  Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status, (Activity)context, requestCode);
                  dialog.show();
              }else{
                // Getting reference to the SupportMapFragment of activity_main.xml
                  SupportMapFragment fm = (SupportMapFragment) this.YOUR_CLASS_NAME.getSupportFragmentManager()
                        .findFragmentById(R.id.my_comm_nearme_map);

                  // Getting GoogleMap object from the fragment
                  googleMap = fm.getMap();

                  //setting map type
                  googleMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);

                  UiSettings uiSettings = googleMap.getUiSettings();
                  uiSettings.setCompassEnabled(false);
                  uiSettings.setZoomControlsEnabled(true);
                  uiSettings.setMyLocationButtonEnabled(false);
              }
        }
    }

第 3 点。

But i run application it shows Goolgle play services in not in Your phone.

Android 需要Google Play 服务才能运行地图。你可以从市场上下载它,然后再试一次,地图就可以了。

如果您在安装Google Play 服务时遇到错误,则您的设备不兼容。

于 2013-08-09T12:52:13.090 回答
1

在此处输入图像描述请转到 google api 并仅在 Google Maps Android API v2 上

Google API 控制台 -> 服务 -> Google Maps Android API v2 ->

而不是生成新的 API 密钥并进行测试。

于 2013-08-09T12:25:01.793 回答
0

使用此代码在 api level-11 以下运行自定义谷歌地图,它也可以在更高版本上成功运行。

将 google-play-services_lib 项目从 \sdk\extras\google\google_play_services_froyo\libproject 导入您的工作区。

右键单击项目->属性-> android->右键单击库面板名称中的复选框为“是库”,然后单击应用并按确定。

现在转到您的项目属性-android->在库面板中->单击添加->现在在选项中选择“google-play-services_lib”->应用>确定

现在使用此代码

    package com.hmkcode.android;

    import android.os.Bundle;
    import android.support.v4.app.FragmentActivity;

   import com.google.android.gms.maps.CameraUpdateFactory;
   import com.google.android.gms.maps.GoogleMap;
   import com.google.android.gms.maps.SupportMapFragment;
   import com.google.android.gms.maps.model.BitmapDescriptorFactory;
   import com.google.android.gms.maps.model.LatLng;
   import com.google.android.gms.maps.model.MarkerOptions;

public class MainActivity extends FragmentActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        try {
            GoogleMap map;
            map = ((SupportMapFragment) getSupportFragmentManager()
                    .findFragmentById(R.id.map)).getMap();
            map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(
                    19.233442, 72.980851), 16));
            map.addMarker(new MarkerOptions()
                    .icon(BitmapDescriptorFactory
                            .fromResource(R.drawable.house_flag))
                    .anchor(0.0f, 1.0f)
                    .position(new LatLng(19.233442, 72.980851))
                    .title("Hello world"));

        } catch (NullPointerException e) {

        }

    }

}

布局.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <fragment
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

在清单中

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

    <uses-sdk
        android:minSdkVersion="8"
       />

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

    <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"/>
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.hmkcode.android.MainActivity"
            android:label="@string/app_name" >
            <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="use your obtained key" />

        <meta-data android:name="com.google.android.gms.version"
             android:value="@integer/google_play_services_version" />
    </application>

</manifest>

现在您可以看到地图,否则您将看到可用于更新服务的按钮。

于 2014-12-15T05:30:21.803 回答