I\'ve been trying to update my spinner in android dynamically but nothing I try has been working.
This is the following code I\'m using to update the spinner.
After you change your data, you will need to add the following code:
typeList = dbAdapter.getList() adapter = new ArrayAdapter(v.getContext(), android.R.layout.simple_spinner_dropdown_item,typeList); groupSpinner.setAdapter(adapter);