Java – Changes between activities do not work

Changes between activities do not work… here is a solution to the problem.

Changes between activities do not work

I tried switching between activities in my Android app (2.1-update1) but it doesn’t work.
Any suggestions?

The only thing that happens when I debug the application is that it stops at this part of the code in Instrumentation.java:

public void waitForIdle() {
            synchronized (this) {
                while (!mIdle) {
                    try {
                        wait();
                    } catch (InterruptedException e) {
                    }
                }
            }
        }

Eclipse says it’s on thread 1

Instrumentation.checkStartActivityResult(int, Object) line: 1537. If I
resume the app, the next stop is in ZygoteInit.java trying to run
Throwable cause = ex.getCause(); … Eclipse says
ZygoteInit$MethodAndArgsCaller.run() line: 864.

Here is the source code:
HappyHomes.java

package com.example.app;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class HappyHomes extends Activity {
    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

Button login = (Button) findViewById(R.id.btnLogin);
        login.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                ProgressDialog laddRuta = ProgressDialog.show(HappyHomes.this, "",
                        "Loggar in, vänligen vänta...", true);

Intent myIntent = new Intent(view.getContext(), Kategorier.class);
                myIntent.
                        startActivity(myIntent);
            }
        });
    }
}

Classifier .java

package com.example.app;

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

public class Kategorier extends Activity {
    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.kategorier);
    }
}

Thanks for your help!

Solution

Make sure Kategorier is registered in your AndroidManifest.xml file.

Related Problems and Solutions