How to change Android Talkback in case of App name

前端 未结 3 1161
攒了一身酷
攒了一身酷 2021-02-20 10:51

The App I am working on has a name which is mispronounced by the talkback. I am able to fix this within the app by changing the spelling. But if I change the spelling in the and

3条回答
  •  半阙折子戏
    2021-02-20 11:45

    In the case that talkback is not pronouncing an acronym correctly, attempting to read it as a word rather than individual letters, you can use zero-width non-breaking space characters \ufeff to separate the letters invisibly.

    Suppose you have the word CAT but you want it pronounced C.A.T.:

    C\ufeffA\ufeffT
    

    It will still appear as CAT and won't be broken for line-wrapping.

    However, your users will not be able to search for the app by typing CAT anymore.

提交回复
热议问题