How to disable onItemSelectedListener to be invoked when setting selected item by code

后端 未结 12 1191
慢半拍i
慢半拍i 2021-02-02 08:05

Just wondering how you handle the following problem: a result is calculated depending on two spinners\' selected items. To handle the UI things, i.e. a user picks a new item in

12条回答
  •  无人共我
    2021-02-02 08:33

    It is very easy you can call the Spinner.setSelection(int position, boolean animate) method with false so the listeners will not react on the change.

提交回复
热议问题