Korean characters are displayed as blank box on the TextField in Galaxy Note 3/Android 4.4/AIR 4.0

The AIR SDK we used is 1/14/2014 Release - AIR 4.
The device we have tested on is Samsung Galaxy Note 3/Android 4.4.
We found that it's quite similar with Bug 3681788 which has been fixed in Beta version 4.0.0.1619.
We checked the issue again with this beta version, and the result is Chinese characters are shown correctly, but Korean's are still not.
Bug 3681788: The CCJ languages characters are displayed as blank box on the TextField.
Hope it can be fixed as soon as possible.

Japanese Characteres have same issue.
We tested on ASUS Nexus 7/Android 4.4.2/AIR 4.0 and Japanese characters are displayed as blank box in the TextField.
The AIR SDK we used is February 20th 2014 Release - AIR 4.
The device we have tested on is ASUS Nexus 7/Android 4.4.2.
AIR SDK 3.6 worked fine.
AIR SDK 3.9 has same issue.
We tested Chinese on ASUS Nexus 7/Android 4.4.2/AIR 4.0, and Chinese Characters are displayed as blank box in the TextField.
I doubt that Korean Characters will also displayed as blank box.( Sorry we cannot read or write Korean so we couldn't test it)
I am guessing GalaxyNote 3(4.4) may also have same issue with Japanese.
Hope this helps
Kenta

Similar Messages

  • Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0

    Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0, such as Nexus7, HTC One,  but in mainland China Nexus7(Android 4.4.2/AIR4.0) showed normal
    AIR SDK is 4.0.0.1628.
    Hope it can be fixed as soon as possible.
    Here is test code:
    package
              import flash.display.Sprite;
              import flash.display.StageAlign;
              import flash.display.StageScaleMode;
              import flash.text.Font;
              import flash.text.TextField;
              import flash.text.TextFieldAutoSize;
              import flash.text.TextFormat;
              public class TestFont extends Sprite
                        public function TestFont()
                                  stage.scaleMode = StageScaleMode.NO_SCALE;
                                  stage.align = StageAlign.TOP_LEFT;
                                  var sprite:Sprite = new Sprite();
                                  var value1:String = "简体中文测试";
                                  var value2:String = "繁體中文測試";
                                  var txt11:TextField = createTextField(null, "11 "+value1);
                                  txt11.x = 10;
                                  txt11.y = 10;
                                  sprite.addChild(txt11);
                                  var txt12:TextField = createTextField(null, "12 "+value2);
                                  txt12.x = txt11.x + txt11.width;
                                  txt12.y = txt11.y;
                                  sprite.addChild(txt12);
                                  var txt21:TextField = createTextField("STHeitiTC-Medium","21 "+value1);
                                  txt21.x = 10;
                                  txt21.y = txt11.y + txt11.height;
                                  sprite.addChild(txt21);
                                  var txt22:TextField = createTextField("MSYH","22 "+value2);
                                  txt22.x = txt21.x + txt21.width;
                                  txt22.y = txt21.y;
                                  sprite.addChild(txt22);
                                  var lastY:int = txt22.y + txt22.height;
                                  var fonts:Array = Font.enumerateFonts(true);
                                  var index:int = 0;
                                  for each (var font1:Font in fonts)
                                            index++;
                                            var txtF:TextField = createTextField(font1.fontName, index + "/" + fonts.length + " " + font1.fontName + " "+value1 +" " + value2);
                                            txtF.x = 10;
                                            txtF.y = lastY;
                                            sprite.addChild(txtF);
                                            lastY += txtF.height;
                                  addChild(sprite);
                        public function createTextField(font:String, value:String):TextField{
                                  var txt:TextField = new TextField();
                                  txt.autoSize = TextFieldAutoSize.LEFT;
                                  var format:TextFormat = new TextFormat();
                                  if(font != null){
                                            format.font = font;
                                            txt.defaultTextFormat = format;
                                            txt.setTextFormat(format);
                                  txt.text = value;
                                  var dformat:TextFormat = txt.defaultTextFormat;
                                  if(dformat != null){
                                            txt.text = value + " |" + dformat.font;
                                  if(font != null){
                                            txt.setTextFormat(format);
                                  return txt;

    I am in mainland China, my Nexus7 can display chinese characters, but my friend in Taiwan, his android4.4.2 display chinese characters as blank.
    I don't understand the reason.
    By the way, TextFormat.font don't work, whatever I set any fonts, display are the same.
    My screenshots:
    Taiwan's screenshots:

  • Chinese characters are displayed as blank box on the TextField in The new HTC One with Android 4.4.2

    I use the AIR SDK is 4.0.0.1628, mobile phone is The new HTC One with Android 4.4.2 in Taiwan.
    When the application installed on the The new HTC One with Android 4.4.2, chinese characters in TextField displayed as blank.
    Hope it can be fixed as soon as possible.
    The test code:
    package
              import flash.display.Sprite;
              import flash.display.StageAlign;
              import flash.display.StageScaleMode;
              import flash.text.Font;
              import flash.text.TextField;
              import flash.text.TextFieldAutoSize;
              import flash.text.TextFormat;
              public class TestFont extends Sprite
                        public function TestFont()
                                  stage.scaleMode = StageScaleMode.NO_SCALE;
                                  stage.align = StageAlign.TOP_LEFT;
                                  var sprite:Sprite = new Sprite();
                                  var value1:String = "简体中文测试";
                                  var value2:String = "繁體中文測試";
                                  var txt11:TextField = createTextField(null, "11 "+value1);
                                  txt11.x = 10;
                                  txt11.y = 10;
                                  sprite.addChild(txt11);
                                  var txt12:TextField = createTextField(null, "12 "+value2);
                                  txt12.x = txt11.x + txt11.width;
                                  txt12.y = txt11.y;
                                  sprite.addChild(txt12);
                                  var txt21:TextField = createTextField("STHeitiTC-Medium","21 "+value1);
                                  txt21.x = 10;
                                  txt21.y = txt11.y + txt11.height;
                                  sprite.addChild(txt21);
                                  var txt22:TextField = createTextField("MSYH","22 "+value2);
                                  txt22.x = txt21.x + txt21.width;
                                  txt22.y = txt21.y;
                                  sprite.addChild(txt22);
                                  var lastY:int = txt22.y + txt22.height;
                                  var fonts:Array = Font.enumerateFonts(true);
                                  var index:int = 0;
                                  for each (var font1:Font in fonts)
                                            index++;
                                            var txtF:TextField = createTextField(font1.fontName, index + "/" + fonts.length + " " + font1.fontName + " "+value1 +" " + value2);
                                            txtF.x = 10;
                                            txtF.y = lastY;
                                            sprite.addChild(txtF);
                                            lastY += txtF.height;
                                  addChild(sprite);
                        public function createTextField(font:String, value:String):TextField{
                                  var txt:TextField = new TextField();
                                  txt.autoSize = TextFieldAutoSize.LEFT;
                                  var format:TextFormat = new TextFormat();
                                  if(font != null){
                                            format.font = font;
                                            txt.defaultTextFormat = format;
                                            txt.setTextFormat(format);
                                  txt.text = value;
                                  var dformat:TextFormat = txt.defaultTextFormat;
                                  if(dformat != null){
                                            txt.text = value + " |" + dformat.font;
                                  if(font != null){
                                            txt.setTextFormat(format);
                                  return txt;

    I am in mainland China, my Nexus7 can display chinese characters, but my friend in Taiwan, his android4.4.2 display chinese characters as blank.
    I don't understand the reason.
    By the way, TextFormat.font don't work, whatever I set any fonts, display are the same.
    My screenshots:
    Taiwan's screenshots:

  • Newbie: Simplified Chinese characters are displayed as square boxes

    Hi,
    I am using Windows XP Simplified Chinese Version SP3, Sun JDK5.0 Update 20. I want to run Apache Ofbiz POS; however, the Chinese characters (zh) in PosUiLabels.xml are all displayed as square boxes.
    I have tested run Ofbiz in Mac OS X and the Simplified Chinese are displayed normally, and other languages can also be displayed in Windows XP.
    What should I do?
    Regards,
    Terence
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
        Licensed to the Apache Software Foundation (ASF) under one
        or more contributor license agreements.  See the NOTICE file
        distributed with this work for additional information
        regarding copyright ownership.  The ASF licenses this file
        to you under the Apache License, Version 2.0 (the
        "License"); you may not use this file except in compliance
        with the License.  You may obtain a copy of the License at
        http://www.apache.org/licenses/LICENSE-2.0
        Unless required by applicable law or agreed to in writing,
        software distributed under the License is distributed on an
        "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
        KIND, either express or implied.  See the License for the
        specific language governing permissions and limitations
        under the License.
    -->
    <resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <property key="PosAdjustment">
            <value xml:lang="en">(adjustment)</value>
            <value xml:lang="es">(adjustment)</value>
            <value xml:lang="fr">(ajustement)</value>
            <value xml:lang="it">(adjustment)</value>
            <value xml:lang="ro">(adjustment)</value>
            <value xml:lang="zh">(&#35843;&#25972;)</value>
        </property>
        <property key="PosTotalReport">
            <value xml:lang="en">TOTALS REPORT</value>
            <value xml:lang="es">REPORTE TOTAL:</value>
            <value xml:lang="fr">TOTAUX</value>
            <value xml:lang="it">TOTALI STAMPA</value>
            <value xml:lang="ro">TOTAL REPORT</value>
            <value xml:lang="zh">&#21512;&#35745;&#25253;&#34920;</value>
        </property>
        <property key="PosTxId">
            <value xml:lang="en">TXID</value>
            <value xml:lang="es">Número de venta</value>
            <value xml:lang="fr">N°vente</value>
            <value xml:lang="it">IDTAX</value>
            <value xml:lang="ro">IDTAX</value>
            <value xml:lang="zh">&#20132;&#26131;&#21495;</value>
        </property>
        <property key="PosULogin">
            <value xml:lang="en">Enter User ID:</value>
            <value xml:lang="es">Ingrese su login:</value>
            <value xml:lang="fr">Entrez votre identifiant :</value>
            <value xml:lang="it">Inserire Id Utente:</value>
            <value xml:lang="ro">Introduceti Id Utilizator:</value>
            <value xml:lang="zh">&#36755;&#20837;&#29992;&#25143; ID:</value>
        </property>
        <property key="PosUPassw">
            <value xml:lang="en">Enter Password:</value>
            <value xml:lang="es">Ingrese password</value>
            <value xml:lang="fr">Entrez votre mot de passe :</value>
            <value xml:lang="it">Inserire Password:</value>
            <value xml:lang="ro">Introduceti Parola:</value>
            <value xml:lang="zh">&#36755;&#20837;&#21475;&#20196;:</value>
        </property>
        <property key="PosUserNotManager">
            <value xml:lang="en">User is not a valid manager!</value>
            <value xml:lang="es">El usuario no es administrador válido</value>
            <value xml:lang="fr">Cet utilisateur n'est pas un gérant !</value>
            <value xml:lang="it">Utente non è un manager valido!</value>
            <value xml:lang="ro">Utilizatorul nu este un manager valid!</value>
            <value xml:lang="zh">&#29992;&#25143;&#38750;&#21512;&#27861;&#31649;&#29702;&#21592;!</value>
        </property>
        <property key="PosValidating">
            <value xml:lang="en">Validating...</value>
            <value xml:lang="es">Validando...</value>
            <value xml:lang="fr">Validation...</value>
            <value xml:lang="it">Validazione...</value>
            <value xml:lang="ro">Validare...</value>
            <value xml:lang="zh">&#30830;&#35748;...</value>
        </property>
        <property key="PosVoid">
            <value xml:lang="en">Enter Order Number To Void:</value>
            <value xml:lang="es">Ingrese número de orden a anular</value>
            <value xml:lang="fr">Entrez le n° d'ordre à annuler :</value>
            <value xml:lang="it">Inserire Numero Ordine Da Svuotare:</value>
            <value xml:lang="ro">Introduceti Numarul Comenzii de Descarcat:</value>
            <value xml:lang="zh">&#36755;&#20837;&#35201;&#20316;&#24223;&#30340;&#35746;&#21333;&#21495;:</value>
        </property>
        <property key="PosWaitingFinalSales">
            <value xml:lang="en">Waiting for final sales data transmission...</value>
            <value xml:lang="es">Esperando transmisión de datos...</value>
            <value xml:lang="fr">En attente de transmission de données ...</value>
            <value xml:lang="it">In Attesa di trasmissione dei dati vendite finali...</value>
            <value xml:lang="ro">Asteptare pentru transmiterea datelor de vanzare finale...</value>
            <value xml:lang="zh">&#31561;&#24453;&#26368;&#32456;&#38144;&#21806;&#25968;&#25454;&#20256;&#36755;...</value>
        </property>
    </resource>

    When you say "displayed" I assume you mean displayed in some GUI component. In which case you should assign a font to that component which can render those characters properly.

  • Arabic characters are displaying as question marks in forms 10g

    We have migrated our application from forms 6i to forms 10g and now in forms 10g the arabic characters are displaying as question marks while it displays correctly in the old application using forms 6i. I have already set the character set to AR8MSWIN1256 in the registry, but it didn't help. Somebody please help.

    @ Sarah, Al-Salamu Alikum We Rahmatu Allah we Barakatu,
    Sarah Habibty, why new installation ? In order to select a new suitable character set !!!
    Then creating a new instance from the db is a better alternative since it saves time,effort and another back up of his current db is exist safely if needed for any purposes in the future.
    @Amer,honestly speaking...
    Modifing ur NLS_LANG to > AMERICAN_AMERICA.AR8MSWIN1256
    Works for me in both Arabic and English data in 2 applications.This works in my pc.But it didn't works at my boss pc this can happened don't have any reason for that.!!!!
    i spent lot's of time trying to search but what i had got is that solution i suggested by a friend of mine.
    Now please could you advise me, is it better to create a new instance of database as Amatu Allah has suggested or is it better to change the character set through sql as some others have suggested? Again i suggest to select the short cut way ; to reset the character set through sql after taking a back up from ur data that is currently exist.
    then retest again doing the select and test ur data input and retrieval.
    SQL> select * from v$nls_parameters
    2 where parameter in ('NLS_CHARACTERSET','NLS_LANGUAGE');watching the output if it works that's fine saving ur time & effort .
    if not working with the correct NLS_CHARACTERSET then use my previous solution.
    Hope this helps...
    Regards,
    Amatu Allah

  • I have updated to 8.1 on both my ipad and iphone 5. I am missing photos...they display as blank boxes. What should I do next?

    I have updated to 8.1 on both my ipad and iphone 5. I am missing photos...they display as blank boxes. What should I do next?

    Apps downloaded on one should also appear on the other as long as the app in question runs on both iPads and iPhones.

  • Special characters / symbols  like u2018u2206u2019 are displayed as u2018#u2019 in the print pr

    While displaying print preview / taking print output using QGA3 Transaction with developed Z SAPScript form specified as one of the parameters(say for example ZARMEXP), the special characters / symbols  like u2018∆u2019 are displayed as u2018#u2019 in the print preview / print output . Of course similar problem had existed for Lambda Symbol u2018u03BBu2019., but it was resolved by using the font type Helve_I7. But for the symbol u2018∆u2019 we checked with almost all the fonts that were available in the system, but of not much use. Hence could you kindly provide us solution(s) that would resolve this issue.

    Hi,
    I hope this depends on the printer settings.
    Check whether your printer could support these characters or not!
    Thanks and Best Regards,
    Suresh

  • Display of check box on the o/p list

    Hi,
            I need to display 3 check boxes on the final output display.
    Can you pls guide me to do this?

    Hi Nagalakshmi,
    Please check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e6435c111d1829f0000e829fbfe/content.htm
    You can output the first character of a field as a checkbox on the output screen by using the following syntax:
    Syntax
    WRITE <f> AS CHECKBOX.
    If the first character of field <f> is an "X", the checkbox is displayed filled. If the first character is SPACE, the checkbox is displayed blank.
    In other words, the user can fill or clear them with a mouse click. For information on how you can check if output fields are ready for input or not, see Enabling Fields for Input. Fields that are ready for input are an essential component of interactive lists that allow a dialog with the user (see Interactive Lists.
    DATA: flag1(1) TYPE c    VALUE ' ',
          flag2(1) TYPE c    VALUE 'X',
          flag3(5) TYPE c    VALUE 'Xenon'.
    WRITE: / 'Flag 1 ', flag1  AS CHECKBOX,
           / 'Flag 2 ', flag2  AS CHECKBOX,
           / 'Flag 3 ', flag3  AS CHECKBOX.
    Best regards,
    raam

  • My iphone 4 started displaying a message box with the following message: "This accessory is not optimized for this phone. You may experience noise and loss of battery."  My question is: how to fix this?

    My iphone 4 started displaying a message box with the following message: "This accessory is not optimized for this phone. You may experience noise and loss of battery."  My question is: Why is this happening and how do I fix it? (I'm losing battery power precipitously). Thanks in advance for any assistance with this question.

    Thanks Kilted Tim, you solved the problem. I'm mightily impressed at the simplicity of the solution!
    Jaded Kane

  • I rented a movie on my mini iPad from iTunes. There is a blank box in the video folder and no download button. Any suggestions?

    I rented a movie on my mini iPad from iTunes. There is a blank box in the video folder and no download button. When I press the box the movie comes up but won't download.  There is usually a download button at the bottom of the screen but is not there.  Any suggestions?

    You move the movie from iTunes to iPad (tap to enlarge image)
    Movie will be moved to the Videos app.

  • I am having problems launching the standalone version of Lightroom 6 after I have gone through the install and activation process? Lightroom starts to open but "hangs" before any photos in the catalgue are displayed. I have contacted the chat support twic

    I am having problems launching the standalone version of Lightroom 6 after I have gone through the install and activation process? Lightroom starts to open but "hangs" before any photos in the catalgue are displayed. I have contacted the chat support twice but they have not been able to fix the problem.

    I went through the activation process yesterday and shut down my PC when I went to bed last evening. When I got up this morning and turned my PC on and then started Lightrom 6 (I upgraded from version 5) it started to launch but then just hung and became "not responsive". I I then uninstalled and then reinstalled the product today but the same thing happened. What is weird is that when I install from the standalone file I downloaded when I purchased the upgrade it looks like it's downloading the software again over the Internet? I have been having these problems for the last four or five days. I have contacted the chat support folks twice and they were able to get it working but whatever they did did not last as the problem reappeared again once the PC was shut down and then started up again.

  • SharePoint 2010 list view - How to filter on a multiline text box field - the view filter does not allow me to select it.

    Hi there,
    Does someone know in SharePoint 2010 list view - How to filter on a multiline text box field - the view filter does not allow me to select it.
    Thanks,

    Hi,
    Per my knowledge,
    it is by design that the data type multiple lines of text can only use “contains” and “begins with” operators.
    You can also filter the list view using SharePoint Designer,
    Open your list AllItem.aspx page in SPD ->click “Filter” > in “Field Name” select your multipe line of text field, in “Comparison” will displayed four choices.
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • TS1717 since updating itunes yesterday I now can't open it and get a pop up box about the procedure entry point not being located. anyone able to help?

    since updating itunes yesterday I now can't open it and get a pop up box about the procedure entry point not being located. anyone able to help?
    these are the boxes that open up:
    I am unsure as to wether I need to unistall and start again but then worry about the vast amount of songs already in the folder that I would have to reload.

    anyone able to help me with the above?

  • Ok i literally just took my ipod 5 out of the box and the home button is not working help me pleasee!

    ok i literally just took my ipod 5 out of the box and the home button is not working help me pleasee!

    I would go straight back to store, state the problem and ask for a replacement. Good luck.

  • Chinese characters are displaying as squares in mail subject & content

    Hi when I am sending or receiving mail which is having Chinese characters in either mail subject or contents then some Chinese characters are appearing as squares.
    This issue is only coming on single system (Window XP, outlook 2007)

    Hello,
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

Maybe you are looking for