Android Question Edit Text with "extended characters" Spanish for example

Rusty

Well-Known Member
Licensed User
Longtime User
I have edit text boxes on an activity.
When I type the extended characters such as "á", (which are comprised of the letter a and the uni-code ́ assembled with:
B4X:
    Result  = jo.RunMethod("normalize", Array(tmpstr, "NFKC"))
The Uni-code management result is fine, however the display in the textbox looks like:
upload_2016-8-9_15-11-53.png
with "whitespace" between the characters.
Within the code:
upload_2016-8-9_15-9-48.png

The text looks just fine.
(Strangely ñ doesn't create the white space...)
Is there an encoding function or setting that I am missing for the Edit Text display? ... UTF8/UTF16??
Thanks
Rusty
 

Attachments

  • upload_2016-8-9_15-1-33.png
    upload_2016-8-9_15-1-33.png
    22.2 KB · Views: 148
  • upload_2016-8-9_15-10-28.png
    upload_2016-8-9_15-10-28.png
    21.4 KB · Views: 162

Rusty

Well-Known Member
Licensed User
Longtime User
Thanks Erel,
It was the font...
I was using fontawesome.ttf and changed it back to DEFAULT.
That resolved it.
Thanks,
Rusty
 
Upvote 0
Top