活动之间的变化不起作用

时间:2011-05-05 19:57:19

标签: java android sdk

我正在尝试更改Android应用中的活动(2.1-update1),但它不起作用。 有什么建议吗?

调试应用程序时唯一发生的事情是它停在Instrumentation.java中的这部分代码上:

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

Eclipse说它位于

的第1个线程中
  

Instrumentation.checkStartActivityResult(int,Object)行:1537。如果我   恢复应用程序,下一站是在ZygoteInit.java尝试运行   Throwable cause = ex.getCause(); ...... Eclipse说   ZygoteInit $ MethodAndArgsCaller.run()行:864。

这是源代码: 的 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);
            }
        });
    }
}

Kategorier.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);
    }
}

感谢您的帮助!

4 个答案:

答案 0 :(得分:2)

确保Kategorier文件中已注册AndroidManifest.xml

答案 1 :(得分:1)

myIntent.startActivity(myIntent);更改为HappyHomes.this.startActivity(myIntent);

答案 2 :(得分:1)

Intent类中没有任何startActivity()方法。你一定做错了。 只需编写startActivity(myIntent)

答案 3 :(得分:0)

必须在清单文件中声明所有服务,广播接收器和活动。