Раздувание SupportMapFragment с помощью Google Maps v2 вызывает ClassNotFoundException

Я хочу начать Intent с фрагментом Google Maps. Пример кода сервисов Google Play работает нормально, но я не запускаю эти карты в своем приложении. Мои ссылочные библиотеки:

  • Android-поддержка-v4.jar
  • google-play-services_lib.jar
  • google-play-services.jar
  • Баночка Android - это цель 4.2, а также платформа android-17.

Я получаю эти ошибки:

java.lang.RuntimeException: Unable to start activity \
       ComponentInfo{app.cookingplace/app.cookingplace.MapsActivity}: \
       android.view.InflateException: Binary XML file line #8: \
       Error inflating class fragment
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
    at android.app.ActivityThread.access$1500(ActivityThread.java:117)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:130)
    at android.app.ActivityThread.main(ActivityThread.java:3687)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:507)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
    at dalvik.system.NativeStart.main(Native Method)

Caused by: android.view.InflateException: Binary XML file line #8: \
       Error inflating class fragment
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:587)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:623)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:408)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
    at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:209)
    at android.app.Activity.setContentView(Activity.java:1657)
    at app.cookingplace.MapsActivity.onCreate(MapsActivity.java:12)
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
    ... 11 more

Caused by: android.support.v4.app.Fragment$InstantiationException: \
       Unable to instantiate fragment com.google.android.gms.maps.SupportMapFragment: \
       make sure class name exists, is public, and has an empty constructor that is public
    at android.support.v4.app.Fragment.instantiate(Fragment.java:401)
    at android.support.v4.app.Fragment.instantiate(Fragment.java:369)
    at android.support.v4.app.FragmentActivity.onCreateView(FragmentActivity.java:272)
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:563)
    ... 20 more

Caused by: java.lang.ClassNotFoundException: com.google.android.gms.maps.SupportMapFragment in loader \
       dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:\
       /data/app/app.cookingplace-2.apk]
    at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:240)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:551)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
    at android.support.v4.app.Fragment.instantiate(Fragment.java:391)
    ... 23 more

Мой код:

Логинактивити.java

package app.cookingplace;

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;

public class LoginActivity extends Activity implements OnClickListener {

    // All static variables
    static final String baseURL = "http://sfsuswe.com/~f12g22/web/php/Login.php?";
    String URL = "";
    // XML node keys
    static final String KEY_SESSION = "session"; // parent node
    static final String KEY_ACTIVATED = "activate";
    String activated = "";
    static final String KEY_REGISTERED = "registered";
    String registered = "";
    static final String KEY_USERID = "userId";
    String userId = "";
    static final String KEY_LOGONNAME = "logonName";
    String logonName = "";

    private Button login_button;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);

        login_button = (Button) findViewById(R.id.login_button);
        login_button.setOnClickListener(this);
    }

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

    @Override
    public void onClick(View arg0) {
        EditText nameLogin = (EditText) findViewById(R.id.user_logon_id);
        String loginName = nameLogin.getText().toString();
        EditText passwordLogin = (EditText) findViewById(R.id.password_logon_id);
        String password = passwordLogin.getText().toString();

        String parameters = "logon=" + loginName + "&password=" + password;
        URL = baseURL + parameters;

        XMLParser parser = new XMLParser();
        String xml = parser.getXmlFromUrl(URL); // getting XML
        Document doc = parser.getDomElement(xml); // getting DOM element

        NodeList nl = doc.getElementsByTagName(KEY_SESSION);

        Element e = (Element) nl.item(0);
        // adding each child node to HashMap key => value
        activated = parser.getValue(e, KEY_ACTIVATED);
        registered = parser.getValue(e, KEY_REGISTERED);
        userId = parser.getValue(e, KEY_USERID);
        logonName = parser.getValue(e, KEY_LOGONNAME);

        if (registered.equals("1")) {
        Intent nextScreen = new Intent(LoginActivity.this,
                MapsActivity.class);
        startActivityForResult(nextScreen, 0);
        }
    }
}

MapsActitity.java

     package app.cookingplace;

     import android.os.Bundle;
     import android.support.v4.app.FragmentActivity;
     import android.view.Menu;

     public class MapsActivity extends FragmentActivity {

            @Override
            protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_maps);
            }

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

activity_login.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=".LoginActivity" >

<EditText
    android:id="@+id/user_logon_id"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:ems="10"
    android:inputType="textPersonName"
    android:text="@string/user_login" >

    <requestFocus />
</EditText>

<EditText
    android:id="@+id/password_logon_id"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/user_logon_id"
    android:ems="10"
    android:inputType="textPassword"
    android:text="@string/password_login" />

<Button
    android:id="@+id/login_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/password_logon_id"
    android:text="@string/button_login" />

activity_maps.xml

<?xml version="1.0" encoding="utf-8"?>
<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=".MapsActivity" >

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

</RelativeLayout>

AndroidManifest.xml

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

    <permission
        android:name="app.cookingplace.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />

    <uses-permission android:name="app.cookingplace.permission.MAPS_RECEIVE" />
    <!-- Copied from Google Maps Library/AndroidManifest.xml. -->
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="16" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <!-- External storage for caching. -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <!-- My Location -->
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <!-- Maps API needs OpenGL ES 2.0. -->
    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />
    <!-- End of copy. -->

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="-My key tested and works fine-" />

        <activity
            android:name="app.cookingplace.LoginActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="app.cookingplace.MapActivity"
            android:label="@string/title_activity_map" >
        </activity>
        <activity
            android:name="app.cookingplace.TestActivity"
            android:label="@string/title_activity_test" >
        </activity>
        <activity
            android:name="app.cookingplace.MapsActivity"
            android:label="@string/title_activity_maps" >
            </activity>
        <uses-library android:name="com.google.android.maps" />
    </application>

</manifest>

person King Luy    schedule 24.12.2012    source источник
comment
у вас есть classnotfound Ошибка, вы добавили все классы в файл манифеста?   -  person Usman Kurd    schedule 24.12.2012
comment
Я думаю, что сделал это, но я обнаружил ошибку classnotfound. Я включил те же банки, что и в пример проекта, и это работает. это моя проблема. не могу найти недостающие компоненты.   -  person King Luy    schedule 24.12.2012


Ответы (6)


В MapsActitity.java добавьте этот импорт ( import android.support.v4.app.FragmentActivity; )

Изменять

 public class MapsActivity extends Activity

To

public class MapsActivity extends FragmentActivity

Прочтите этот http://developer.android.com/training/basics/fragments/creating.html

person Rahul    schedule 24.12.2012
comment
Когда я использую общедоступный класс MapsActivity, расширяющий FragmentActivity, я получаю эту ошибку: 12-24 11:04:52.046: E/dalvikvm(3649): Не удалось найти класс app.cookingplace.MapsActivity, на который ссылается метод app.cookingplace.LoginActivity. по щелчку - person King Luy; 24.12.2012
comment
Добавьте ‹uses-library android:name=com.google.android.maps /› в свой манифест между ‹/activity› и ‹/application› - person Rahul; 24.12.2012
comment
сделано, но я снова получаю ошибки 12-24 11:37:24.296: E/AndroidRuntime(5762): java.lang.RuntimeException: невозможно начать активность ComponentInfo{app.cookingplace/app.cookingplace.MapsActivity}: android.view.InflateException : Строка двоичного XML-файла № 7: ошибка при раздувании фрагмента класса - person King Luy; 24.12.2012
comment
мой текущий файл activity_maps.xml выглядит так: ‹RelativeLayout xmlns:android=schemas.android.com/apk/res /android xmlns:tools=schemas.android.com/tools android:layout_width=match_parent android:layout_height=match_parent tools:context=.MapsActivity › ‹fragment class=com.google.android.gms.maps.SupportMapFragment android:name=app.cookingplace.MapsActivity android:id=@+id/map android:layout_width=match_parent android:layout_height=match_parent /› ‹/RelativeLayout› - person King Luy; 24.12.2012
comment
Король Луй Попробуйте и это. Вы не должны переходить представления, а фактически начинать новую деятельность. Intent nextScreen = new Intent(LoginActivity.this,MapsActivity.class); startActivityForResult (следующий экран, 0); - person Rahul; 24.12.2012
comment
stil fail 12-24 11:59:15.109: E/AndroidRuntime(6962): java.lang.RuntimeException: невозможно запустить действие ComponentInfo{app.cookingplace/app.cookingplace.MapsActivity}: android.view.InflateException: двоичный файл XML строка № 7: ошибка при раздувании фрагмента класса 12-24 11:59:15.109: E/AndroidRuntime (6962): вызвано: android.view.InflateException: двоичный XML-файл строка № 7: ошибка при раздувании фрагмента класса - person King Luy; 24.12.2012
comment
12-24 11:59:15.109: E/AndroidRuntime(6962): Причина: java.lang.ClassNotFoundException: com.google.android.gms.maps.SupportMapFragment в загрузчике dalvik.system.PathClassLoader[/system/framework/com .google.android.maps.jar:/data/app/app.cookingplace-2.apk] - person King Luy; 24.12.2012
comment
Прочтите ответ этого stackoverflow. com/questions/13696620/. - person Rahul; 24.12.2012
comment
Обновите файл манифеста в своем вопросе. Вы поместили ‹uses-library android:name=com.google.android.maps /› в свой манифест между ‹/activity› и ‹/application› - person Rahul; 24.12.2012

Просто измените это в вашем MapsActitity.java файле public class MapsActivity extends android.support.v4.app.FragmentActivity . Вам нужно расширить FragmentActivity непростую деятельность.

Это проблема, когда ваше приложение пытается получить FragmentActivity, который вы не расширили.

person GrIsHu    schedule 24.12.2012
comment
Когда я использую общедоступный класс MapsActivity, расширяет android.support.v4.app.FragmentActivity, я получаю эту ошибку: 12-24 11:02:57.039: E/dalvikvm (3553): не удалось найти класс app.cookingplace.MapsActivity, на который ссылается из метода app.cookingplace.LoginActivity.onClick - person King Luy; 24.12.2012
comment
Просто определите только имя класса в файле манифеста, подобном этому <activity android:name=".MapsActivity">, и попробуйте. Теперь я надеюсь, что это должно работать. - person GrIsHu; 24.12.2012

Теперь он работает нормально. Я следовал этому руководству, мой проект lib был отмечен красным X, в этом и был смысл. Следуйте этому руководству. чтобы исправить это.
Решение — это комбинация всех ваших советов. Большое спасибо. Ребята, вы спасли мое Рождество.

person King Luy    schedule 25.12.2012

Это рабочий пример, посмотрите, у меня он сработал Вот a ссылка!

Ваш xml включает class="com.google.android.gms.maps.SupportMapFragment" внутри тега фрагмента

расширить свою деятельность от FragmentActivity

и если вы хотите сделать объект карты, используйте это

SupportMapFragment mapFrag = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map);

Код здесь выглядит следующим образом: XML

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

MainActivity

 public class MainActivity extends FragmentActivity  {


     // Google Map
private GoogleMap googleMap;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


 .......

     SupportMapFragment mapFrag = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map);
    ....
person Syed Raza Mehdi    schedule 12.03.2014

На ведьмовской версии Android вы пытаетесь? Если используется версия Pre-Honeycomb (‹3.0), то вы не можете использовать фрагменты, как указано в документы

Вы должны использовать SupportMapFragment как указано здесь и убедитесь, что библиотеки включены в проект пути.

Надеюсь, поможет.

person sabadow    schedule 24.12.2012
comment
в activity_maps.xml есть определение класса class=com.google.android.gms.maps.SupportMapFragment разве это не то, что вы имеете в виду? - person King Luy; 24.12.2012
comment
это и то, что ваша активность MapsActivity должна расширяться от android.support.v4.app.FragmentActivity до использования SupportFragments до Android 3.0 (и, возможно, некоторые другие исправления, подобные этому) - person sabadow; 24.12.2012
comment
при этом я получаю следующие ошибки: 12-24 11:05:59.828: E/dalvikvm(3820): не удалось найти класс app.cookingplace.MapsActivity, на который ссылается метод app.cookingplace.LoginActivity.onClick - person King Luy; 24.12.2012
comment
У вашего проекта есть папка libs, в которую вы добавляете необходимые банки? какая версия инструмента SDK используется? проверьте это stackoverflow.com/questions/9931040/ и stackoverflow.com/questions/5502907/ - person sabadow; 24.12.2012
comment
Мое рабочее пространство выглядит так: .htm Вчера я загрузил инструмент SDK. Так что я думаю, что это актуально. Образец сервисов Google Play отлично работает на этом устройстве. Я скопировал крутые фрагменты оттуда. - person King Luy; 24.12.2012
comment
Версия диспетчера SDK — 21.0.1. - person King Luy; 24.12.2012

Вы уверены, что целевой AVD, на котором вы пытаетесь запустить свой проект, имеет версию 11+, потому что фрагменты ниже 11 не допускаются.

person Rahul    schedule 14.01.2013