I have the following Spinner
:
Spinner spinner = (Spinner)findViewById(R.id.sp1);
and I initially make it invisible like this:
spinner.setVisibility(TRIM_MEMORY_BACKGROUND);
This does make the Spinner
invisible but how to make it visible again?
Thanks in advance.
//Hide
spinner.setVisibility(View.GONE);
//Show
spinner.setVisibility(View.VISIBLE);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With