我正在尝试创建一系列按钮,然后为所有人创建一个onClick事件,这是我的代码,当我运行代码时(应用程序测试(processcom.MyTest.testing)意外停止。请再试一次)我不确定是什么,错误在哪里。我必须遗漏一些基本的东西,我不是想创建应用程序,我只是倾向于Java,特别是针对Android。
这是我的代码
package com.MyTest.testing;
import static android.widget.Toast.makeText;
import java.util.Random;
import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import android.view.View;
import android.view.View.OnClickListener;
public class TreActivity extends Activity {
/** Called when the activity is first created. */
//declaring some public int vars
int isPressed1 = 1;
int isPressed2 = 1;
int isPressed3 = 1;
int isPressed4 = 1;
int isPressed5 = 1;
int isPressed6 = 1;
int isPressed7 = 1;
int isPressed8 = 1;
int isPressed9 = 1;
int isPressed10 = 1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
myMethod();
}; //End of onCreate (Bundle savedInstanceState)
public void myMethod() {
MyClickHandler handler = new MyClickHandler();
Button[] buttons = fnButtonArray();
for (Button button : buttons) {
button.setOnClickListener(handler);
}
}
class MyClickHandler implements View.OnClickListener {
public void onClick(View v) {
Toast.makeText(TreActivity.this, ((Button) v).getText() , Toast.LENGTH_SHORT).show();
}
}
public Button[] fnButtonArray(){
Button arrButtons[] = new Button[11];
// started with 1 not 0 for the array to match the button numbers
arrButtons[1] = (Button) findViewById(R.id.btn1);
arrButtons[2] = (Button) findViewById(R.id.btn2);
arrButtons[3] = (Button) findViewById(R.id.btn3);
arrButtons[4] = (Button) findViewById(R.id.btn4);
arrButtons[5] = (Button) findViewById(R.id.btn5);
arrButtons[6] = (Button) findViewById(R.id.btn6);
arrButtons[7] = (Button) findViewById(R.id.btn7);
arrButtons[8] = (Button) findViewById(R.id.btn8);
arrButtons[9] = (Button) findViewById(R.id.btn9);
arrButtons[10]= (Button) findViewById(R.id.btn10);
return arrButtons;
}
} //public class TreActivity extends Activity
答案 0 :(得分:0)
看起来你得到的是NullReferenceException。您创建一个大小为26的数组,但只填充第2到第11个元素。然后循环遍历所有26个元素,试图分配一个点击处理程序。当您尝试将单击处理程序分配给null元素时,将引发异常。
您可能会通过检查LogCat来查看这些详细信息。您可以在Eclipse中访问LogCat或从终端运行adb logcat
。