2024-07-04 10:59 PM - edited 2024-07-04 11:05 PM
디스플레이를 터치하면 글자가 깨지거나 이상한 글자가 표시됩니다.
그리고 screen1에 여러 글자를 입력했는데 놔다 켜면 글자가 이상하게 나옵니다. 도움을 주세요.
이 사진은 touchgfx로 디자인된 오리지널 사진입니다.
보드에 이것을 업로드하면 위에처럼 이미지가 사라지거나 이상한 텍스트가 포함되는 경우가 있습니다.
2024-07-09 07:49 AM
Try add to your code after set new text TextArea | TouchGFX Documentation
2024-07-09 07:58 AM - edited 2024-07-09 08:00 AM
textArea1.invalidate();
<update textArea1 buffer here>
textArea1.resizeToCurrentText();
textArea1.invalidate();
If right aligned:
textArea1.invalidate();
<update textArea1 buffer here>
textArea1.resizeToCurrentTextWithAlignment();
textArea1.invalidate();