0

我正在尝试将谷歌地图添加到我的 android 应用程序中,并且我遵循了以下文档:https ://developers.google.com/maps/documentation/android/start

首先,我的清单文件是否正确?

清单.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="where.is.the.action"
          android:versionCode="1"
          android:versionName="1.0">
    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>
    <permission
        android:name="where.is.the.action.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"/>
    <uses-permission android:name="where.is.the.action.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:label="@string/app_name" android:icon="@drawable/ic_launcher">
        <activity android:name="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="xxxxxxxxxxxxxxxxxxxxxxxxxxxx"/>
    </application>
</manifest>

然后这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent">
    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="My Location"
        android:onClick="getLocation"
        android:layout_weight="0"
    />
    <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.MapFragment"/>
</LinearLayout>

如果我删除fragment标签它工作正常,但是一旦我将它添加回应用程序关闭并显示:“不幸的是,MainActivity 已停止。”

有谁看到出了什么问题?

4

1 回答 1

1

也许您正尝试MapFragment在未运行 Android 3.0+ 的设备上使用。MapFragment适用Activity于 API 级别 11 中的 an 和本机片段实现。适用于 Android 支持库提供的SupportMapFragmenta和片段 backport。FragmentActivity


更新

经过进一步审查,问题可能有两个方面:

  1. 您尝试附加google-play-services.jar到您的项目,而不是按照说明将 Play Services Android 库项目附加到您的项目

  2. 您通过直接弄乱构建路径而不是将 JAR 复制到libs/.

撤销你最初所做的。然后,按照说明将 Android 库项目附加到您的项目(作为副作用,它将为您正确设置该 JAR)。

由于您似乎正在执行命令行构建,因此您需要为 Google 选择不发布的 Android 库项目创建命令行构建文件 (grrrrrrrrrrrrrrr)。跑:

android update project -p /home/ryan/android-sdk-linux/extras/google/google_play_services/libproject/googl‌​e-play-services_lib

创建必要的文件。

于 2013-01-23T23:12:25.247 回答