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 8203311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T07:30:29+00:00 2026-06-07T07:30:29+00:00

In my Android Application I have two Activities. One is GmapsActivity and one is

  • 0

In my Android Application I have two Activities.

One is GmapsActivity and one is GmapsActivity1 and two layouts login.xml and main.xml

By default I want to load login.xml and then in this I want to call main.xml on different conditions of password. But when I call GmapsActivity1 application crashed. Here is my code sample for GmapsActivity

public class GMapsActivity extends MapActivity {

EditText password;
Button   login;


@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);

        password=(EditText)findViewById(R.id.pass);
        login=(Button)findViewById(R.id.logbtn);

        login.setOnClickListener(new View.OnClickListener(){
            public void onClick(View v)
            {
                Intent myIntent = null;
                if(password.getText().toString().equals("admin")) {
                myIntent = new Intent(getApplicationContext(), GMapsActivity.class);
                startActivity(myIntent);
                } else {
                Toast.makeText(getBaseContext(), "invalid password - try again",  Toast.LENGTH_SHORT).show();
                }

            }

        });

    }



    @Override
    protected boolean isRouteDisplayed() {

        return false;
    }


    }

How could I solve this?

  • 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-07T07:30:30+00:00Added an answer on June 7, 2026 at 7:30 am

    okay so you have

    GMapsActivity.java with login.xml and GmapsActivity1 with main.xml

    first of all change your manifeste like this

    <application
            android:icon="@drawable/icon"
            android:label="@string/app_name" >
            <activity
                android:name=".GMapsActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" >
                        <category android:name="android.intent.category.LAUNCHER" >
                        </category>
                    </action>
                </intent-filter>
            </activity>
            <activity
                android:name=".GmapsActivity1"
                android:label="@string/app_name" >
                <intent-filter>
                    <category android:name="android.intent.category.LAUNCHER" >
                    </category>
                </intent-filter>
            </activity>
        </application>
    

    then your GMapsActivity.java should like this

    @Override
            public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.login);
    
            //..some code here..
         }
    
    @Override  
     public void onClick(View v) {  
      Intent i = new Intent(GMapsActivity.this, GmapsActivity1.class);  
      startActivity(i);  
     }
    

    and finally your GmapsActivity1.java should be like this

    @Override
            public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
    
            //..some code here..
         }
    

    also you may like to check below simple tutorial to understand this

    Start/Load Activity from Activity in Android

    still have any doubt, let me know!!

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

Sidebar

Related Questions

I have an android application and while switching between two activities I want to
I have an application that contains two Activities with <intent-filter> <action android:name=android.intent.action.MAIN/> <category android:name=android.intent.category.LAUNCHER/>
I have two activities in my Android 2.1 application. The first is the Main
I'm trying to write an android application that has two main activities: login screen
I have an Android Honeycomb application with two activities; the first one has a
Say I have two Activities in an Android application, EditPerson and EditEmployee . It
I am trying do a simple application for Android . I have two Activities
I'm new to the android .In my application i have two activities. In the
I have an Android application that contains two Activities . Activity A has a
I have two threads in an Android application, one is the view thread, and

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.