谷歌地图不适用于模拟器和设备

时间:2013-08-29 04:42:00

标签: android android-mapview android-maps

我正在尝试运行一个简单的谷歌地图,但它不能正常显示地图background.checked在模拟器和设备上。

xml文件: -

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

Java类

import android.os.Bundle; 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.Marker; import
com.google.android.gms.maps.model.MarkerOptions;

public class LocationGB extends android.support.v4.app.FragmentActivity {     
    static final LatLng HAMBURG = new LatLng(53.558, 9.927); 
    static final LatLng KIEL = new LatLng(53.551, 9.993);
    private GoogleMap map;
     @Override protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_location);
        map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(android.R.id.content)).getMap();

        if (map!=null){
            Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG)
                .title("Hamburg"));
            Marker kiel = map.addMarker(new MarkerOptions()
                .position(KIEL)
                .title("Kiel")
                .snippet("Kiel is cool")
                .icon(BitmapDescriptorFactory
                .fromResource(R.drawable.ic_launcher))); 
        }
    } 
}

3 个答案:

答案 0 :(得分:2)

在您的清单文件中,您必须添加:

<permission
  android:name="your.application.package.permission.MAPS_RECEIVE"
  android:protectionLevel="signature" />

喜欢从: your.application.package 到: com.themontcalm.droid

如果你正在使用

,那就是
<uses-library android:name="com.google.android.maps" />

然后从清单文件中删除:

并将您的api代码添加到清单文件中:

<meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="Your_Map_Key" />

在清单文件中你错过了这个:

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

所以也在清单文件中添加:

您应该在代码中使用 R.id.map 更改 android.R.id.content

类似的东西:

map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();

答案 1 :(得分:2)

为了使用谷歌地图服务,

请访问code.google.com  并得到你ApiKey。

在那里创建项目 - >转到服务 - &gt;激活Google Maps Android API v2。 然后为您的应用程序创建密钥。

将以下权限添加到清单。

 <uses-permission android:name="com.anchit.locationapi.maps.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" />

使用

 <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="your_apikey" />

还要添加

<permission
        android:name="com.anchit.locationapi.maps.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />

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

在清单中的应用程序标记内。

使用

map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
        .getMap();

代码。

并设置其他所需的属性。现在运行应用程序。

答案 2 :(得分:1)

在你的清单中添加

<permission
  android:name="your.application.package.permission.MAPS_RECEIVE"
  android:protectionLevel="signature" />

还要添加到您的应用标签

<meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="Your_Map_Key" />

您还可以访问Google Map V2thisExample of map v2

希望它对你有所帮助。

修改

根据你所说的在你的项目中添加这个xml文件

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

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

并在地图活动中访问

 map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
        .getMap();