我有一个由字符串数组中的值填充的微调器。我可以通过 LogCat 从微调器完美地获取值,但是当我尝试在包含 onClick 方法的内部类中获取值时,LogCat 不显示该值或任何消息。我正在尝试将微调器中的值添加到我的助手中,但它返回 NullPointerException。我不太清楚为什么,我提供了一个 LogCat 屏幕截图和我在下面使用的代码。非常感谢所有帮助!
截屏:
package com.example.weatherapplication;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.Toast;
public class AddCity extends Activity {
EditText name, country;
Button add;
String textSpin;
Spinner sp;
// ISOCodes - this took forever!
String[] ISOCODES = new String[] { "GB", "US" };
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.addcity);
name = (EditText) findViewById(R.id.name);
add = (Button) findViewById(R.id.add);
sp = (Spinner) findViewById(R.id.countryList);
// populate spinner with ISOCODES
sp.setAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, ISOCODES));
textSpin = sp.getSelectedItem().toString();
add.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (name.getText().toString().matches("") || country.getText().toString().matches("")) {
Toast.makeText(AddCity.this , "Field can't be empty" , Toast.LENGTH_SHORT).show();
} else {
DataBaseHelper helper = new DataBaseHelper(AddCity.this);
helper.openDataBase();
Log.w("Spinner value two:", textSpin);
helper.insert(name.getText().toString(), textSpin, R.drawable.red_bg);
helper.close();
finish();
}
}
});
}
}