我是应用程序开发的初学者。我的问题是,当我运行我的应用程序并单击“计算”按钮时,程序将停止。代码:
public class screen1 extends Activity {
private EditText name;
private CheckBox box1;
private Spinner spinner;
private TextView text1, text2, text3, text4, text5, text6;
private Button calcbutton, closebutton;
String strength;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Spinner hubSpinner = (Spinner) findViewById(R.id.myspinner);
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource( this, R.array.military_ranks , android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
hubSpinner.setAdapter(adapter);
name = (EditText)findViewById(R.id.editText1);
strength = name.getText().toString();
box1 = (CheckBox)findViewById(R.id.checkBox1);
text1 = (TextView)findViewById(R.id.textView4);
text2 = (TextView)findViewById(R.id.textView6);
text3 = (TextView)findViewById(R.id.textView8);
text4 = (TextView)findViewById(R.id.textView10);
text5 = (TextView)findViewById(R.id.textView12);
text6 = (TextView)findViewById(R.id.textView14);
final Button calcbutton = (Button) findViewById(R.id.button1);
calcbutton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
int str = Integer.valueOf(strength);
int rank = spinner.getSelectedItemPosition()+1;
double sebzes;
if(box1.isChecked()){
sebzes = (((rank-1)/20+0.3)*((str/10)+40))*1*(1+1/100);
text1.setText(Double.toString(sebzes));
}
else{
sebzes = (((rank-1)/20+0.3)*((str/10)+40))*1;
text1.setText(Double.toString(sebzes));
}
}
});
final Button closebutton = (Button) findViewById(R.id.button2);
closebutton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
finish();
}
});
}
}
在edittext
组件中,您应该只能编写数字。我不知道为什么它不起作用。
答案 0 :(得分:1)
问题是这两行:
int str = Integer.valueOf(strength);
int rank = spinner.getSelectedItemPosition()+1;
如果你只使用EditText中的数字,第一个不会失败,但最好确保或至少捕获当你尝试将字符转换为数字值时引发的异常。此外,您也可以使用Integer.valueOf(strength).intValue();
,因此通常不需要这样做。
真正的问题是第二行。您声明了变量spinner
,但您从未实例化它。这就是为什么你会在那里得到一个NullPointerException。
在一个不相关的说明中:您还应该使用大写字母来启动您的类名,以遵循Java命名约定。
答案 1 :(得分:0)
您没有在任何地方实例化spinner
,但是您在按钮点击方法的第二行中引用它。可能是一个空引用问题。