In my Android application, I have two activity classes. I have a button on the first one and I want to show the second when it is clicked, but I get an error. Here are the classes:

public class FirstActivity extends Activity {

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

    Button orderButton = (Button)findViewById(R.id.order);

    orderButton.setOnClickListener(new View.OnClickListener() {

      @Override
      public void onClick(View view) {
        Intent intent = new Intent(FirstActivity.this, OrderScreen.class);
        startActivity(intent);
      }

    });
  }
}

The second class that should show when the button is clicked, but never does:

public class OrderScreen extends Activity {

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

    Button orderButton = (Button) findViewById(R.id.end);

    orderButton.setOnClickListener(new View.OnClickListener() {

      @Override
      public void onClick(View view) {
        finish();
      }

    });
  }
}

How do I create a button that will show the second activity?

link|improve this question

66% accept rate
Do you get an error when you compile or run time? In either case, what is the error? – Quintin Robinson Apr 10 '09 at 3:12
This was a run time error. The emulator gave the generic "the application has stopped unexpectedly" error, but using the debugger, it showed a "android.content.ActivityNotFoundException: Unable to find explicit activity class {class name} have you declared this activity in your AndroidManifest.xml? – Tai Squared Apr 10 '09 at 15:24
4  
It is a very common bug that people forget to add their activity into Manifest.xml but there should be way to enter it automatically. – Algo Nov 24 '10 at 10:26
feedback

5 Answers

Add this line to your AndroidManifest.xml:

<activity android:name=".OrderScreen" />
link|improve this answer
34  
-1 for posting same answer 5 months later – Chaulky May 28 '11 at 20:49
7  
@Chaulky, I would agree, except that at least here is the actual syntax required. Tai Squared gave the what, user106011 gave the how – Tim Jarvis Aug 24 '11 at 4:17
4  
+1 for providing the code, -1 for not editing the original answer, so you get nothing! – snez Nov 30 '11 at 18:23
+1 for syntax and getting a higher vote than @TaiSquared – andrewliu Feb 23 at 6:27
feedback
up vote 65 down vote accepted

The issue was the OrderScreen activity wasn't added to the AndroidManifest.xml. Once I added that as an application node, it worked properly.

link|improve this answer
7  
I don't think it's quite right that you posted your own answer for credit after user106011 had already given the appropriate answer. – Ascension Systems Mar 23 '11 at 20:44
20  
@jesse Looking on the date, seems like user106011 posted his answer 5 months after Tai answered his own question; though I can't understand why he is so much upvoted... – Adinia Mar 25 '11 at 10:33
lol woopsie, guess I should check the dates – Ascension Systems Mar 25 '11 at 21:09
+1 great answer. – Aby Jun 2 '11 at 23:43
feedback

you can use the context of the view that did the calling. Example:

Button orderButton = (Button)findViewById(R.id.order);

orderButton.setOnClickListener(new View.OnClickListener() {

  @Override
  public void onClick(View view) {
    Intent intent = new Intent(/*FirstActivity.this*/ view.getContext(), OrderScreen.class);
    startActivity(intent);
  }

});
link|improve this answer
feedback

add your OrderScreen activity in manifest.file

link|improve this answer
feedback

----FirstActivity.java-----

    package com.mindscripts.eid;
    import android.app.Activity;
    import android.content.Intent;
    import android.os.Bundle;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.Button;

public class FirstActivity extends Activity {

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Button orderButton = (Button) findViewById(R.id.order);
    orderButton.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            Intent intent = new Intent(FirstActivity.this,OrderScreen.class);
            startActivity(intent);
        }
    });

}

}

---OrderScreen.java--- package com.mindscripts.eid;

    import android.app.Activity;
    import android.os.Bundle;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.Button;



    public class OrderScreen extends Activity {
@Override



protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.second_class);
    Button orderButton = (Button) findViewById(R.id.end);
    orderButton.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            finish();
        }
    });

}

}


---AndroidManifest.xml----

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


<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".FirstActivity"
              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=".OrderScreen"></activity>**
</application>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.