嗨,我是 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);
}
});
}
}