0

我正在尝试在 android 中开发一个关于 Google Map API 的项目。我正在使用 Eclipse 版本的 JUNO,SDK 级别 17。

问题是,当应用程序开始加载时,它显示了一个不幸的错误。这是我的代码:

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

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

清单文件

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <permission
        android:name="com.example.googlemap.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"/>
    <uses-permission android:name="com.example.googlemap.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="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.googlemap.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="xxx...xxx"/>
    </application>

</manifest>

mainActivity.java

package com.example.googlemap;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
public class MainActivity extends Activity {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

我收到如下错误消息:

android.view.InflateException: Binary XML file line #1: Error inflating class fragment

请帮我一个忙...为什么谷歌API库没有添加到我的项目中?

这是错误 任何帮助请...

4

3 回答 3

2

您的课程必须扩展FragmentActivtiy

确保您导入

import android.support.v4.app.FragmentActivity;  

由于您的 rmin sdk 为 8,您应该使用 SupportMapFrament。

您也可以将此作为附注进行检查。

活动布局:片段类:vs android:name 属性

这是初始化 GoogleMap 对象并使用它的后期部分。

初始化谷歌地图对象

你应该使用getSupportFragmentManager()

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

进口

 import com.google.android.gms.maps.SupportMapFragment; 

编辑:

您必须选择 Google API 而不是 Android 4.2.2。

还要确保你正确地引用了谷歌图书馆项目。看起来它是从发布的图片中断开的链接。

将 google-play services_lib 库项目复制到您的工作区(地图项目所在的文件夹)。库项目可以在以下路径下找到。

     <android-sdk-folder>/extras/google/google_play_services/libproject/google-play-services_lib library project .

将库项目导入eclipse

点击 File > Import,选择 Android > Existing Android Code into Workspace,浏览工作区导入库项目。您可以检查它是否是库项目。右键单击库项目。转到属性。单击左侧面板上的 Android。您将看到 Is Library 已选中。

您需要在您的 android 项目中引用 google-play services_lib 库项目。

右键单击您的android项目。转到属性。在左侧面板上选择 Android。单击添加并浏览库项目。选择相同。单击确定并应用。

于 2013-07-01T11:30:36.767 回答
1
<fragment
        class="com.google.android.gms.maps.SupportMapFragment"
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

使用class代替android:name

于 2013-07-01T11:28:27.640 回答
1

在您正在使用的类文件中Fragment.Use SupportMapFragment

import com.google.android.gms.maps.SupportMapFragment;

GoogleMap gm;
gm = ((SupportMapFragment)(getSupportFragmentManager().findFragmentById(R.id.map))).getMap();
gm.setMapType(GoogleMap.MAP_TYPE_NORMAL);
于 2013-07-01T11:28:50.017 回答