2013-09-05 3 views
2

Привет всем, я новичок в android, и я пытаюсь подключить карту Google V2 с помощью своего приложения для Android. Для этого я следую за этим tutorial и this one also, но когда каждый я пытаюсь обедать, мое приложение показывает следующую ошибку.Google map V2 с android не работает?

enter image description here

мой MainActivity.java

package com.example.map; 


import android.annotation.SuppressLint; 
import android.annotation.TargetApi; 
import android.app.Activity; 
import android.app.FragmentManager; 
import android.os.Build; 
import android.os.Bundle; 
import android.view.Menu; 

import com.google.android.gms.maps.CameraUpdateFactory; 
import com.google.android.gms.maps.GoogleMap; 
import com.google.android.gms.maps.MapFragment; 
import com.google.android.gms.maps.model.BitmapDescriptorFactory; 
import com.google.android.gms.maps.model.LatLng; 
import com.google.android.gms.maps.model.Marker; 
import com.google.android.gms.maps.model.MarkerOptions; 
import com.google.android.gms.maps.SupportMapFragment; 

@SuppressLint("NewApi") 
public class MainActivity extends Activity { 
    static final LatLng HAMBURG = new LatLng(53.558, 9.927); 
    static final LatLng KIEL = new LatLng(53.551, 9.993); 
    private GoogleMap map; 

    @TargetApi(Build.VERSION_CODES.HONEYCOMB) 
@Override 
    protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    FragmentManager fragmentManager = getFragmentManager(); 
    MapFragment mapFragment = (MapFragment) fragmentManager.findFragmentById(R.id.map); 
    map = mapFragment.getMap(); 
    //map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap(); 
    Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG) 
     .title("Hamburg")); 
    Marker kiel = map.addMarker(new MarkerOptions() 
     .position(KIEL) 
     .title("Kiel") 
     .snippet("Kiel is cool") 
     .icon(BitmapDescriptorFactory 
      .fromResource(R.drawable.ic_launcher))); 

    // Move the camera instantly to hamburg with a zoom of 15. 
    map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15)); 

    // Zoom in, animating the camera. 
    map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null); 
    } 

    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
    getMenuInflater().inflate(R.menu.main, menu); 
    return true; 
    } 

} 

мой activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".MainActivity" > 


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

</RelativeLayout> 

мой AndroidManifest.xml

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

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

    <permission 
     android:name="in.wptrafficanalyzer.locationingooglemapv2.permission.MAPS_RECEIVE" 
     android:protectionLevel="signature"/> 

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

    <uses-permission android:name="in.wptrafficanalyzer.locationingooglemapv2.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:allowBackup="true" 
     android:icon="@drawable/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme" > 


     <activity 
      android:name="com.example.map.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="the key" /> 
    </application> 

</manifest> 

мой locgcat

09-05 08:09:55.435: E/AndroidRuntime(490): FATAL EXCEPTION: main 
09-05 08:09:55.435: E/AndroidRuntime(490): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.map/com.example.map.MainActivity}: android.view.InflateException: Binary XML file line #8: Error inflating class fragment 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.app.ActivityThread.access$2300(ActivityThread.java:125) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.os.Handler.dispatchMessage(Handler.java:99) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.os.Looper.loop(Looper.java:123) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.app.ActivityThread.main(ActivityThread.java:4627) 
09-05 08:09:55.435: E/AndroidRuntime(490): at java.lang.reflect.Method.invokeNative(Native Method) 
09-05 08:09:55.435: E/AndroidRuntime(490): at java.lang.reflect.Method.invoke(Method.java:521) 
09-05 08:09:55.435: E/AndroidRuntime(490): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868) 
09-05 08:09:55.435: E/AndroidRuntime(490): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626) 
09-05 08:09:55.435: E/AndroidRuntime(490): at dalvik.system.NativeStart.main(Native Method) 
09-05 08:09:55.435: E/AndroidRuntime(490): Caused by: android.view.InflateException: Binary XML file line #8: Error inflating class fragment 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:576) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.view.LayoutInflater.rInflate(LayoutInflater.java:618) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.view.LayoutInflater.inflate(LayoutInflater.java:407) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.view.LayoutInflater.inflate(LayoutInflater.java:320) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.view.LayoutInflater.inflate(LayoutInflater.java:276) 
09-05 08:09:55.435: E/AndroidRuntime(490): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:198) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.app.Activity.setContentView(Activity.java:1647) 
09-05 08:09:55.435: E/AndroidRuntime(490): at com.example.map.MainActivity.onCreate(MainActivity.java:31) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627) 
09-05 08:09:55.435: E/AndroidRuntime(490): ... 11 more 
09-05 08:09:55.435: E/AndroidRuntime(490): Caused by: java.lang.ClassNotFoundException: android.view.fragment in loader dalvik.system.PathClassLoader[/data/app/com.example.map-2.apk] 
09-05 08:09:55.435: E/AndroidRuntime(490): at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243) 
09-05 08:09:55.435: E/AndroidRuntime(490): at java.lang.ClassLoader.loadClass(ClassLoader.java:573) 
09-05 08:09:55.435: E/AndroidRuntime(490): at java.lang.ClassLoader.loadClass(ClassLoader.java:532) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.view.LayoutInflater.createView(LayoutInflater.java:466) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.view.LayoutInflater.onCreateView(LayoutInflater.java:544) 
09-05 08:09:55.435: E/AndroidRuntime(490): at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:66) 
09-05 08:09:55.435: E/AndroidRuntime(490): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:563) 
09-05 08:09:55.435: E/AndroidRuntime(490): ... 20 more 

Что не так в моем коде ??

+0

Ответ на этот вопрос: http://stackoverflow.com/questions/14122705/error-while-inflating-xml-in-google-maps-fragment – wwwhizz

+0

Карта v2 не будет отображаться в эмуляторе на устройстве, потому что для этого требуются сервисы Google Play установлен. –

+0

'Google map V2 с Android не работает?«Быстрый ответ на ваш вопрос будет« э, да, да ». – njzk2

ответ

5

Ваш мин составляет SDK 8

android:minSdkVersion="8" 

Ваш класс должен расширять FragmentActivty

Используйте SupportMapFragment вместо MapFragment

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

Также импортировать

import android.support.v4.app.FragmentActivity; 
import com.google.android.gms.maps.SupportMapFragment; 

Edit:

ваше имя пакета

package="com.example.map" 

Меняем его

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

и

<uses-permission android:name="com.example.map.permission.MAPS_RECEIVE"/> 
+0

Большое вам спасибо за ответ на мой вопрос сэр. Я применяю следующие изменения в моем коде, и теперь предыдущая ошибка была решена, но теперь я получаю исключение нулевого указателя. Я не понимаю, почему есть проблема с моим сеньором LatLng. – Simmant

+0

@simmant опубликует стек и отправит строку, которая вызывает NPE> – Raghunandan

+0

Mind read hat on: 'map = mapFragment.getMap()' вызывается до того, как фрагмент был выложен, так что это null. [Этот ответ] (http://stackoverflow.com/a/14047363/153225) может вам помочь. – Martin

0
// xml 
<fragment 
    android:id="@+id/maps" 
    android:name="pl.mg6.android.maps.extensions.SupportMapFragment" 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" /> 

// Activity 
    FragmentManager fm = getSupportFragmentManager(); 
    SupportMapFragment f = (SupportMapFragment) fm.findFragmentById(R.id.maps); 

    map = f.getExtendedMap(); 
+0

Немного больше контекста, кроме некоторых фрагментов кода, было бы неплохо. Я не думаю, что OP * нуждается в расширении сторонней карты для решения своей проблемы. – Martin

1

использовать устройство для запуска приложения вместо Эмулятор

+0

Большое вам спасибо, что этот код работает отлично на устройстве realy mam. теперь реально счастливый – Simmant

+0

мама, но вопрос в том, почему этот код не работает над эмулятором ?? – Simmant

+0

u приветствуется. удачи :) –

1
public class MainActivity extends FragmentActivity 
{ 
    static final LatLng HAMBURG = new LatLng(53.558, 9.927); 
    static final LatLng KIEL = new LatLng(53.551, 9.993); 
    private GoogleMap map; 


    @Override 
    protected void onCreate(Bundle savedInstanceState) 
    { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    android.support.v4.app.FragmentManager fragmentManager = getSupportFragmentManager(); 
    SupportMapFragment mapFragment = (SupportMapFragment) fragmentManager.findFragmentById(R.id.map); 
    map = mapFragment.getMap(); 
    Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG) 
     .title("Hamburg")); 
    Marker kiel = map.addMarker(new MarkerOptions() 
    .position(KIEL) 
    .title("Kiel") 
    .snippet("Kiel is cool") 
    .icon(BitmapDescriptorFactory 
     .fromResource(R.drawable.ic_launcher))); 

// Move the camera instantly to hamburg with a zoom of 15. 
map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15)); 

// Zoom in, animating the camera. 
map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null); 
} 

}

изменить строки в вас файл манифеста

<permission 
    android:name="in.wptrafficanalyzer.locationingooglemapv2.permission.MAPS_RECEIVE" 
    android:protectionLevel="signature"/> 


<uses-permission android:name="in.wptrafficanalyzer.locationingooglemapv2.permission.MAPS_RECEIVE"/> 

вместо отмечены две линии использования

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


<uses-permission android:name="com.example.map.permission.MAPS_RECEIVE"/> 
+0

Большое вам спасибо за ваш ответ, я изменил выше в своем коде, но все равно получаю ту же ошибку. – Simmant

+0

u запускать его в эмуляторе? –

+0

yaa mam Я запускаю его в эмуляторе, и я также установил игровые сервисы. – Simmant

1

Попробуйте это, я надеюсь, что это поможет вам

package com.example.maptest; 

import android.app.Activity; 
import android.os.Bundle; 
import android.view.Menu; 

import com.google.android.gms.maps.CameraUpdateFactory; 
import com.google.android.gms.maps.GoogleMap; 
import com.google.android.gms.maps.MapFragment; 
import com.google.android.gms.maps.model.BitmapDescriptorFactory; 
import com.google.android.gms.maps.model.LatLng; 
import com.google.android.gms.maps.model.Marker; 
import com.google.android.gms.maps.model.MarkerOptions; 

public class MainActivity extends Activity { 
    static final LatLng HAMBURG = new LatLng(53.558, 9.927); 
     static final LatLng KIEL = new LatLng(53.551, 9.993); 
     private GoogleMap map; 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 
     map = ((MapFragment) getFragmentManager().findFragmentById(R.id.fragment1)) 
        .getMap(); 
       Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG) 
        .title("Hamburg")); 
       Marker kiel = map.addMarker(new MarkerOptions() 
        .position(KIEL) 
        .title("Kiel") 
        .snippet("Kiel is cool") 
        .icon(BitmapDescriptorFactory 
         .fromResource(R.drawable.ic_launcher))); 

       // Move the camera instantly to hamburg with a zoom of 15. 
       map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15)); 

       // Zoom in, animating the camera. 
       map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null); 
    } 

    @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; 
    } 

}