You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Selecting a spinner item in the UI does not trigger the expected onItemSelectedListener callback. However, the correct item shows up in the UI and the dropdown closes
Expected Behavior:
the call back is just supposed to log the lambda parameters as a test, but the log is empty.
the listener declaration is this:
Please complete the following information:
Describe the Bug:
Selecting a spinner item in the UI does not trigger the expected onItemSelectedListener callback. However, the correct item shows up in the UI and the dropdown closes
Expected Behavior:
the call back is just supposed to log the lambda parameters as a test, but the log is empty.
the listener declaration is this:
binding!!.spinner.setOnSpinnerItemSelectedListener { one: Int, two: String?, three: Int, four: String? -> println("$one, $two, $three, $four") }
Where binding is the fragment binding, spinner is the PowerSpinnerView object, and the block is the callback.
The text was updated successfully, but these errors were encountered: