单击按钮时,Android应用程序意外停止错误

时间:2012-11-03 03:10:46

标签: android android-layout android-widget

大家好,我对Android开发很新,我正在使用我的Android应用程序 我的应用程序包括一个论坛,用户可以在那里发帖,评论和讨论.... 所以我在界面中工作但是当我点击按钮时我收到错误我指示我到注册页面 有人可以帮我解决这个错误

这是按钮所在的mainuserinterface.xml文件的mainuserinterface.java的代码。 signupform.class是单击按钮时触发的下一个活动的java文件

我收到的错误是应用程序意外停止.. 希望我能为你们说清楚

package com.mohammed.watzIslam;


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

public class mainuserinterface extends Activity  {


@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.mainuserinterface);

// this is the button where I receive errors when I click 
Button forum = (Button) findViewById(R.id.next); 

forum.setOnClickListener(new View.OnClickListener() {
    public void onClick(View view){
        Intent myIntent = new Intent (view.getContext(), signupform.class);
        startActivityForResult (myIntent, 0);

    }
});

 //these two button still not directing to any next activity yet
Button button1 = (Button) findViewById(R.id.next); 

forum.setOnClickListener(new View.OnClickListener() {
    public void onClick(View view){
        Intent myIntent1 = new Intent (view.getContext(), signupform.class);
        startActivityForResult (myIntent1, 0);

    }
});
Button button2 = (Button) findViewById(R.id.next); 

forum.setOnClickListener(new View.OnClickListener() {
    public void onClick(View view){
        Intent myIntent2 = new Intent (view.getContext(), signupform.class);
        startActivityForResult (myIntent2, 0);

    }
});
}
}

3 个答案:

答案 0 :(得分:0)

运行'adb logcat'以查看导致失败的异常和堆栈跟踪。

一般来说,我在两种情况下看到过这种问题: - signupform未在AndroidManifest.xml中列为活动 - 在signupform.onCreate()

中发生了一些异常

无论哪种方式,'adb logcat'都应该让你对这个问题有所了解。如果您有logcat输出但仍有问题,请编辑您的问题并添加异常信息和堆栈跟踪。

答案 1 :(得分:0)

检查你的清单文件,如果你还没完成就宣布活动。当我们多次尝试安卓时,我们忘记在清单文件中声明我们的活动。

答案 2 :(得分:0)

有很多事情可能是你问题的原因。

  • 您应该将View.getContect重新定位到mainuserinterface.this

  • 检查您的manifest Entry是否添加了新课程活动?