使用mapview

时间:2016-01-31 17:12:16

标签: android google-maps android-fragments

我知道这个话题有很多问题。我已经解决了所有这些问题,并在堆栈溢出和其他站点中尝试了很多建议。但不幸的是,没有人解决了我的问题。

当我使用MapView和MapsActivity时,会显示网格而不是地图。正如所建议的那样,我重新生成了API密钥,并确保我已经提供了与我的应用程序相同的软件包名称,SHA1密钥以及我在凭据中启用了Google Maps ApI for Android。我已经在Manifestfile.xml中给出了地图所需的所有权限,我的清单文件如下所示:

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

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

<uses-permission android:name="android.permission.INTERNET"/>
<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"/>

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

<permission
    android:name="com.example.permission.MAPS_RECEIVE"
    android:protectionLevel="signature"/>
<uses-permission android:name="com.example.permission.MAPS_RECEIVE"/>

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

    <uses-library android:name="com.google.android.maps"/>
    <activity
        android:name=".MapsActivity"
        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="AIzaSyClOHCG7SBYxg1o6YdUWhn03VSqWwE1y_g"/>
   <meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>

</manifest>

我的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<com.google.android.gms.maps.MapView android:id="@+id/map"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" />

</LinearLayout>

和我扩展MapActivity的活动:

package com.example.mapsample;

import android.os.Bundle;

import com.google.android.maps.MapActivity;

public class GoogleMaps_Sample extends MapActivity{

public void onCreate(Bundle b){
    super.onCreate(b);
    setContentView(R.layout.googlemapssample);

}
@Override
protected boolean isRouteDisplayed() {
    // TODO Auto-generated method stub
    return false;
}

}

当我使用上述活动时,会显示网格。当我扩展FragmentActivity而不是MapAcitivity和fragment而不是mapview时,我得到一个错误,说不幸停止了,有时它说了一些片段类错误。

我还为我正在使用的模拟器安装了Google API系统映像。我也下载了Google Play服务。但是,地图不会显示给我。我已经按照其他问题的建议完成了几乎所有事情。

我的应用程序中的错误或错误是阻止地图显示并显示网格。

提前致谢。

0 个答案:

没有答案