I am working on a project which is in Xamarin Cross Platform in Android. I am not to able to get Input of Commas from numeric keyboard. here is the code:
<Entry Text="{Binding Path=CalculationItem.HourlyRate}" Keyboard="Keyboard.Numeric" Grid.Column="1" Grid.Row="0"/>
But In Android Studio I acheived by doing this:
<EditText
android:id="@+id/germenCurrency"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:digits="0123456789,"
android:inputType="numberDecimal"/>
In xamarin i am not able to get input of Commas
Thanks in Advance.
Regards, Vivek Patel