1

我在布局和 api v2 键中使用 mapview,但未显示地图。我的问题是......我可以
在 mapview 中使用 v2 键,否则我将不得不使用 mapfragment。

主要的.xml

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

<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map_view"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:clickable="true" 
    android:enabled="true" 
    android:apiKey="my_apikey" />

</RelativeLayout>

清单.xml

  <?xml version="1.0" encoding="utf-8"?>

 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.fpa"
  android:versionCode="1"
  android:versionName="1.0">

<application android:icon="@drawable/icon" android:label="@string/app_name">

    <activity android:name="com.example.fpa.GMapsActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <uses-library android:name="com.google.android.maps" />

    </application>

    <uses-permission android:name="android.permission.INTERNET"/>

</manifest> 

得到如下输出: 在此处输入图像描述

4

2 回答 2

3

您使用的地图com.google.android.maps.MapView是 Google Map API 的v1。不幸的是,它已被正式弃用。

您应该使用Google Maps API的新版本,即版本 2

我的问题是......我可以在 mapview 中使用 v2 键吗?

Maps V1 密钥取决于 MD5 密钥(如果我没记错的话),而 V2 取决于 SHA1 密钥。因此,您不能使用它。

我将不得不使用 mapfragment

那么,为什么不呢?

这是Google Map V2的教程

于 2013-04-16T05:36:52.273 回答
0

使用此代码并设置 target=Google Inc.:Google APIs:8

公共类 ActivityGoogleMap 扩展 MapActivity {

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

    //to add zoom in and zoom out default buttons  
    MapView mapView = (MapView) findViewById(R.id.mapView); 
    mapView.setBuiltInZoomControls(true);  
}

}

于 2013-04-16T05:48:15.670 回答