325 views
in GUI Development by
Hi,

    I am working with virtual keyboard .
    Symbolbutton only accept 3 char but i want to add ".?123"

   I am not able to add .?123 in Alphbet layout.can you please guide me to resolve this.

layout speical on variable default value  is:  "... .?123".

With Regards,

Ramesh.G

1 Answer

0 votes
by

Hi Ramesh,

you can adopt this at ExtendedVirtualKeyboard::KeyboardQWERTZ inside loadLayoutFromString():

// Each symbol button gets three characters assigned from the layout string e.g. ABC or 123
var int32 i;
for (i = 0; i < 3; i = i + 1)
...

Change the number 3 to the number of characters you like.

Regards,

Julian

by
Thanks Julian.It is working now.

Ask Embedded Wizard

Welcome to the question and answer site for Embedded Wizard users and UI developers.

Ask your question and receive answers from the Embedded Wizard support team or from other members of the community!

Embedded Wizard Website | Privacy Policy | Imprint

...