答案 0 :(得分:1)
这个问题很老,但无论如何我都给出了答案。
当您迁移到v7支持库时,需要更改侦听器。
public class YourActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener
关于微调器的创建
Spinner spinner = (Spinner) findViewById(R.id.spinner);
spinner.setOnItemSelectedListener(this); //set the listener
实施听众方法
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
Snackbar.make(this.getCurrentFocus(), "OnItemSelected", Snackbar.LENGTH_LONG);
//Your implementation here
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
Snackbar.make(this.getCurrentFocus(), "onNothingSelected", Snackbar.LENGTH_LONG);
//Your implementation here
}
使用onNothingSelected方法尚不清楚。您可以阅读this帖子以澄清。
我希望它有所帮助。
此致