I have a page that displays three different views on the same data depending on the selected item in a picker. Rather than displaying the picker widget, I want a tap on the picker to invoke a command to move to the next view, basically acting as a button. Is there any way to catch the input to the picker with another control.
I've tried putting the picker inside a StackLayout with a TapGestureRecognizer attached, but setting InputTransparent = true on the Picker has no effect on Android - the picker widget is still displayed. Is this a bug? Do I need to float something over the top of the picker to catch the tap?