Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9069011
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T17:19:13+00:00 2026-06-16T17:19:13+00:00

I want to start an Intent with a Google Maps fragment. The sample code

  • 0

I want to start an Intent with a Google Maps fragment. The sample code of Google Play Services works fine but I don’t get these maps running in my application. My referenced libraries are:

  • android-support-v4.jar
  • google-play-services_lib.jar
  • google-play-services.jar
  • The Android jar is the target 4.2 also platform android-17

I get this errors:

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

My Code:

LoginActivity.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>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T17:19:14+00:00Added an answer on June 16, 2026 at 5:19 pm

    In MapsActitity.java Add this import ( import android.support.v4.app.FragmentActivity; )

    Change

     public class MapsActivity extends Activity
    

    To

    public class MapsActivity extends FragmentActivity
    

    Read this http://developer.android.com/training/basics/fragments/creating.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Whenewer I want to start new activity, I use this code: Intent myIntent1 =
I want to start service once i get BOOT_COMPLETE intent. In HTC explorer there
I want to start a new Intent dynamically. Therefore setClassName seems the best choice.
I have a situation like this: start(); <Some code> end(); I want start() function
Hi there im using http://code.google.com/p/aacdecoder-android/ heres my main activity full code: http://pastebin.com/FmaVgfNP but now
I have ExpandedList, and i want to start new intent when i click the
I want to start service from fragment from a list view item. I am
I want to clear the backstack when I start new Activity intent. The exact
I want to start an intent to start Facebook with some extras. How can
I am trying to play a remote video file through intent(default media player) but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.