I create my theme to use with the app and the parent of the theme is Theme.AppCompat.Light.NoActionBar
by the way, I want white background and black text.
And this is adapter code
     val adapter = ArrayAdapter.createFromResource(activity,
                R.array.email_type_array, android.R.layout.simple_spinner_item)
     adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item)
     child.spinner.adapter = adapter
Is there any easy way to change Spinner dropdown color in Android?
