this is often asked like here Android emulator : insert negative number?
I have setup an edittext:
<EditText
android:id="@+id/edWminLevel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:inputType="numberDecimal|numberSigned"
android:text="0" />
when trying inserting a negative number, I press "-" and it inserts "-", but then it won't let me inserting any other digit! It works only by inserting the "-" after the complete number was inserted.
is this a BUG?