0
Good morning, everyone,
I have Spinner in which I load the vendor information (user option to select a vendor) I need to include in this Spinner an option to select all vendors and then have the option to select ALL or certain vendor.
I am using the following code, but setPrompt does not work well:
spfor.setPrompt("Todos os Fornecedores");
ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_spinner_item, forn);
spfor.setAdapter(adapter);
thank you in advance.