I have been researching Android Pickers as described here.
There are pickers for time, date, and number fields but, much to my surprise, I discovered there is no generic picker for basic strings.
I have found several resources discussing how to re-purpose the NumberPicker
to use strings as follows:
Android picker widget for arbitrary strings
and
These look promising, but my end goal is to have my string picker fit within a panel on my main view instead of popping over the view. I need to do this because the top of my view has an object that has gets modified based on what is chosen in the picker and hence needs to be displayed in real-time to show how different values for a given property would affect its look.
Is there any way to do this?