# \[Android\] Regarding the Android mode, has the text breakage been resolved?

**URL:** https://discourse.processing.org/t/android-regarding-the-android-mode-has-the-text-breakage-been-resolved/24139
**Category:** Processing for Android
**Created:** [September 26, 2020, 2:47pm UTC](https://discourse.processing.org/t/android-regarding-the-android-mode-has-the-text-breakage-been-resolved/24139 "2020-09-26T14:47:17Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![GWAK](https://avatars.discourse-cdn.com/v4/letter/g/13edae/32.png) [@GWAK](https://discourse.processing.org/u/GWAK)
#### Post date: [September 26, 2020, 2:47pm UTC](https://discourse.processing.org/t/android-regarding-the-android-mode-has-the-text-breakage-been-resolved/24139/1 "2020-09-26T14:47:17Z")

</div>

![text](https://canada1.discourse-cdn.com/flex036/uploads/processingfoundation1/original/2X/a/a2109bbb0371b63314e9e41a4aa04c4b7d4b7098.jpeg)

Regarding the Android mode, has the text breakage been resolved?

Please refer to the image.

1. Korean
2. Japanese
3. English

If you experiment through  
All texts are broken except in English.

Did you come up with a solution?

---

<div class="post-metadata">

### Author: ![GWAK](https://avatars.discourse-cdn.com/v4/letter/g/13edae/32.png) [@GWAK](https://discourse.processing.org/u/GWAK)
#### Post date: [September 26, 2020, 11:38pm UTC](https://discourse.processing.org/t/android-regarding-the-android-mode-has-the-text-breakage-been-resolved/24139/2 "2020-09-26T23:38:20Z")

</div>

> PFont myFont;
> 
> void setup(){  
> fullScreen();  
> orientation(PORTRAIT);
> 
> String fontList = PFont.list();  
> printArray(fontList);  
> myFont = createFont(fontList[0], 32);  
> textFont(myFont);
> 
> }
> 
> void draw(){  
> background(255); fill(0);  
> textSize(40);  
> String msg1 = “안녕하세요”;  
> String msg2 = “こんにちは。”;  
> String msg3 = “HELLO”;
> 
> text(msg1, int(width/2), 100);  
> text(msg2, int(width/2), 200);  
> text(msg3, int(width/2), 300);  
> }

I tried changing the font to fix the problem.  
Still, the result is the same. Problems arise.

---

<div class="post-metadata">

### Author: ![GWAK](https://avatars.discourse-cdn.com/v4/letter/g/13edae/32.png) [@GWAK](https://discourse.processing.org/u/GWAK)
#### Post date: [January 27, 2023, 7:13am UTC](https://discourse.processing.org/t/android-regarding-the-android-mode-has-the-text-breakage-been-resolved/24139/3 "2023-01-27T07:13:51Z")

</div>

@Rupesh_Kumar

Dear Rupesh\_Kumar,

Thank you for your enthusiasm.

Do you have any solutions for the above? Except for English, other languages ‘character breaking’ phenomenon occurs.  
Do you have any workaround?
