- I am trying to modify the
MvxSpinner
to set a default value saying "Select a Value". - I referred this solution to override the methods, but I am not able to override the methods.
How to achieve this in a elegant way
XML
<Mvx.MvxSpinner
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30dp"
android:background="@drawable/dropdown"
local:MvxBind="ItemsSource Cruise; SelectedItem CruiseLineSelected; Visible CruiseAndShipSelectionVisibility"
local:MvxItemTemplate="@layout/spinner_cruise_list"
local:MvxDropDownItemTemplate="@layout/spinner_cruise_list"
android:text="Select a cruise"
android:layout_marginBottom="20dp"
android:id="@+id/mvxSpinnerCruise" />