我一直在阅读并研究一些教程,例如 this
但是我仍然遇到我的应用程序关闭的问题。所以我猜它与按钮交互部分有关,但我不确定如何解决它。(Gaemscreen1.class 是我的下一个活动)我是 Android 新手,我几乎无法打开我的测试应用程序。当我按下一个按钮,期待去另一个场景,但最终被强制关闭时,问题就来了。
这是我的测试代码:
package com.example.testandy04;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class Title extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_title);//set layout class
init();
}
public void init(){
Button start = (Button)findViewById(R.id.buttonT1);
start.setOnClickListener(new OnClickListener(){
public void onClick(View vv){
// TODO Auto-generated method stub
Intent intent = new Intent(Title.this, Gaemscreen1.class);
startActivityForResult(intent, 0);
}
});
}
}
任何想法,任何人?