我想保存在微调器中选择的值。我尝试过与编辑文本相同的方式。文本被保存但不是微调器值。
public void action(View v)
{
switch(v.getId())
{
case R.id.button1:
String spinner_taluka=tv4.getSelectedItem().toString();
String comment=tv5.getText().toString();
if(comment==null||comment==""||comment.length()<3)
{
show("Please add comment");
}
if(spinner_taluka==null)
{
show("Select one item");
}
else
{
db.execSQL("insert into employee values('"+spinner_taluka+"','"+comment+"','nothing')");
i=new Intent(this,Success.class);
startActivityForResult(i, 500);
overridePendingTransition(R.anim.slide_in_right, R.anim.slide_out_left);
db.close();
finish();
}
break;
}
但这不起作用。 有人可以帮帮我吗?