2013-07-01 28 views
0

我嘗試在android中的Google Map API上開發項目。我使用JUNO的Eclipse版本,SDK level-17。谷歌地圖API未在android中加載

問題是,當應用程序開始加載時,它顯示一個不幸的錯誤。這裏是我的代碼:

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

再幫我一個贊成plz ... 爲什麼Google API庫沒有添加到我的項目中?

This is error 任何幫助,請...

+1

向我們顯示您的代碼和清單文件 – Raghunandan

+0

好的,給出的代碼。 – Mehdi

+0

擴展'FragmentActivity'並試一試。 – Raghunandan

回答

2

你的類必須擴展FragmentActivtiy

確保導入

import android.support.v4.app.FragmentActivity; 

既然你RMIN SDK是8,你應該使用SupportMapFrament。

您也可以將其作爲旁註進行檢查。

Activity Layout: Fragment class: vs android:name attributes

這是初始化GoogleMap對象和使用相同的最新部分。

要初始化谷歌地圖對象

您應該使用getSupportFragmentManager()

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

進口

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

編輯:

您必須選擇谷歌的API,而不是安卓4.2.2 。

此外,請確保您正確引用Google圖書館項目。看起來這是張貼的圖片中的一個斷開的鏈接。

將google-play services_lib庫項目複製到您的工作空間(您的地圖項目所在的文件夾)。該庫項目可以在以下路徑下找到。

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

導入庫項目到Eclipse

單擊文件>導入,選擇的Android>將現有Android代碼到工作區,並瀏覽該工作區導入庫項目。你可以檢查它是否是圖書館項目。右鍵點擊圖書館項目。轉到屬性。點擊左側面板上的Android。你會看到Is Library被選中。

您需要在Android項目中引用google-play services_lib庫項目。

右鍵單擊你的android項目。轉到屬性。在左側面板上選擇Android。點擊添加並瀏覽庫項目。選擇相同的。點擊確定並應用。

+0

非常感謝Raghu Da。 – Mehdi

+0

感謝您的建議。 Ya,我的工作區在C盤之外。再次感謝男士。 – Mehdi

+0

@歡迎您隨身攜帶 – Raghunandan

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

+1

」**中的'android:name'屬性指定**要在佈局中實例化的'Fragment類'。我認爲這不是問題。 http://developer.android.com/guide/components/fragments.html – Raghunandan

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);