Android Question FloatLabeledEditText inputtype

leitor79

Active Member
Licensed User
Longtime User
Hi,

I have a FloatLabeledEditText and I have issues with the inputtype property:

B4X:
        Wait For (sf) Dialog_Ready(pnl As Panel)
        pnl.LoadLayout("layproducto")
        lblPrecioLista.EditText.InputType = lblPrecioLista.EditText.INPUT_TYPE_DECIMAL_NUMBERS
        lblPrecioLista.Text = mProductoSeleccionado.Get(Campos.PRODUCTO_PRECIOLISTA)

So; my questions are:

- I'd like an input type for a currency type (decimals but not negative numbers, desirable thousands separators, desirable "$" symbol)

EDIT: DISCARD THIS.
- The code shown does not show the decimal numbers type. When the keyboard is open over that control, a full keyboards is shown. Why?
EDIT: END OF DISCARD. THIS WORKS FINE.

Thank you very much!
 
Last edited:
Top