How to know if a spinner item has been selected in android?

浪尽此生 提交于 2020-01-03 10:08:01

问题


How can I know if an item in spinner has been selected in android??


回答1:


See here: http://developer.android.com/resources/tutorials/views/hello-spinner.html

You have to implement an OnItemSelectedListener.

Here the example from the link:

public class MyOnItemSelectedListener implements OnItemSelectedListener {

    public void onItemSelected(AdapterView<?> parent,
        View view, int pos, long id) {
      Toast.makeText(parent.getContext()), "The planet is " +
          parent.getItemAtPosition(pos).toString(), Toast.LENGTH_LONG).show();
    }

    public void onNothingSelected(AdapterView parent) {
      // Do nothing.
    }
}

spinner.setOnItemSelectedListener(new MyOnItemSelectedListener());

You could also use an anonymous inner method if you don't want to explicitly declare a class for your listener.




回答2:


for the spinner, you need to implement OnItemSelectedListener.



来源:https://stackoverflow.com/questions/5257297/how-to-know-if-a-spinner-item-has-been-selected-in-android

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!