我一直试图解决这个问题,但我在网上找到的每个例子都完全误导了我(可能是因为我对android很新)。我只想从spinner获取所选项的值。我做了以下事情:
public class AddDiscountActivity extends Activity implements OnItemSelectedListener{
然后在这个主类中我定义了一个字符串shopCategory。然后我在类中实现了这个方法:
@Override
public void onItemSelected(AdapterView<?> parent, View view, int pos, long id)
{
// TODO Auto-generated method stub
shopCategory = parent.getItemAtPosition(pos).toString();
}
尽管如此,我仍然将值设为空,因为在我的数据库中,所有字段都显示除了category。 Ay推荐?