I found that if you set the InputType property to:
Input type numberSigned|numberDecimal
it will popup the keyboard when that field takes the focus.
Also, you can create a string resource of characters that can be input into the Digits property
in strings.xml:
Input type numberSigned|numberDecimal
it will popup the keyboard when that field takes the focus.
Also, you can create a string resource of characters that can be input into the Digits property
in strings.xml:
<string name="acceptableNumerics">0123456789-.</string>
in the layout:
<EditText ....android:digits="@string/acceptableNumerics" ... />