Skip to content
Advertisement

android Spinner requires 2 clicks to work

am trying to use a spinner within a fragment to categorize the output of my recycler view

when I call the recycler view function from the onCreateView it works perfectly. however, when I call it from the spinner function, it requires 2 clicks to display.

here is the spinner XML code:

JavaScript

and here is the fragment:

JavaScript

and here is the spinner functions

JavaScript

here’s the display function:

JavaScript

I’ve tried to put the spinner functions within a spinner.onItemSelectedListener inside and outside the fragment, I tried to enable and disable focus and focusableTochMode, I also tried to call the recycler view before the spinner in the fragment.

Advertisement

Answer

You need to notify your RecyclerViewAdapter that data has changed. Add

JavaScript

at the end of your display.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement