24

我已经在这个应用程序上工作了将近一年(高级项目),几天前它刚刚决定中断。我的应用程序是使用面向 Froyo Android 2.2 的 Eclipse 版本 3.7.2 64 位开发的,使用的是我的 Windows 7 64 位电脑。到目前为止,我已经尝试过:

  • 重新排列清单文件中的 uses-library 标签
  • 重写地图xml文件
  • 删除 R.java 文件并刷新
  • 将 mapview 元素放置在布局中
  • 重新安装eclipse和android-sdk
  • 清理项目
  • 创建一个 style.xml 文件并引用它
  • 在实际设备上部署
  • 恢复到以前的代码

可能还有更多……

我的代码如下:gmap.xml

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="0xMbgnc-el963gCdpl547hdkgXUILTskZr-T5uvg" // random key posted here
/>

AndroidManifest.xml

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

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-sdk android:minSdkVersion="8"/>


<application android:icon="@drawable/icon" android:label="@string/app_name">
    <uses-library android:name="com.google.android.maps" />
    <activity android:name=".PubMeActivity"
              android:label="@string/app_name"
              android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".MappingActivity"
              android:label="@string/app_name">
    </activity>

</application>
</manifest>

我非常感谢您提前提供的任何帮助。

4

5 回答 5

1

我建议看看地图演示应用程序。这与 Google Play 服务库捆绑在一起,在您的 SDK 管理器中只需包含 Google Play 服务的示例复选框。然后,您可以在 SDK 目录中找到项目文件 @ <android-sdk>/extras/google-play-services/samples/maps

于 2014-06-17T05:37:51.520 回答
1

您必须将/path_to_android-sdk/extras/google/google_play_services/libproject/google-play-services_libLibrary 作为外部库包含到您的项目中,并且还必须包含此 jar 文件/path_to_android-sdk/extras/google/google_play_services/libproject/google-play-services_lib/libs/google-play-services.jar

除此之外,您还应该拥有以下权限:

<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"/>

于 2014-04-09T15:04:35.073 回答
1
<permission
android:name="com.example.app.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.app.permission.MAPS_RECEIVE"/>

尝试将上述内容添加到您的清单文件中。

于 2014-04-25T01:31:20.603 回答
1

我认为 com.google.android.maps.MapView 现在已经过时了,现在我使用了 com.google.android.gms.maps.MapView。请查看http://developer.android.com/reference/com/google/android/gms/maps/MapView.html获取帮助,如果您想使用 MapFragment,请访问http://www.androidhive.info/2013 /08/android-working-with-google-maps-v2/网址。

于 2014-06-03T10:39:17.440 回答
1

这些是您通常应该拥有的地图 v2 的权限

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

<uses-permission android:name="com.example.gmapsapp.permission.MAPS_RECEIVE" />
<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"    />

并且 api 密钥现在在带有元标记的清单文件中使用

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="@string/apikey />

在这里,我包含了一个 gmaps 的 xml 文件示例

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
于 2014-07-14T20:44:10.927 回答