Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
なんらかの理由で、次の文字列を入力すると:
15 קמ
テキスト ビューでは、"15" と "קמ" の間に新しい行が作成されます。
「קמ」を「km」に置き換えると、正常に動作します...
注: 文字列の両方の部分がヘブライ語の場合、これは起こりません。
手がかりはありますか?
たとえば、ヘブライ語のテキストには UTF-8 エンコーディングを使用してみてください。
String text = "15 קמ"; text = new String(text.getBytes(), "UTF-8");