I am trying to add a key listener for a edittext object. this is my .axml
<EditText
android:id="@+id/amountTextBox"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
and this is how i get the object EditText textbox=FindViewById(Resource.Id.amountTextBox);
I am trying to change the text when they press a key so it is formatted as a decimal number i.e. if they input 5 the outcome will be 0.05.
I tried using textbox.KeyPress but this only gets called when the back key or done key are pressed.
Can someone guide me in the right direction?