字母串消失

时间:2012-09-07 12:48:13

标签: android

我正在尝试在TextView中编写Sindhi语言字符串,但有些字母消失了。 例如:当我写“ٿ”时,它很好,但是当我将这另一个字母组合起来时,如text.getText()。toString()+“ي”,所以“ٿ”,消失,android无法将这些组合起来信.. 谢谢你的帮助

2 个答案:

答案 0 :(得分:0)

这可能有助于你

TextView text = (TextView) findViewById(R.id.text);
        text.setText("ٿ");      
        String s1 = text.getText().toString();      
        String s2 =  s1 +" "+ "ي";      
        text.setText(s2.toString());

答案 1 :(得分:0)

您是否使用任何库来显示Sindhi Text。如果没有,请使用它,否则将其正确放入assest文件夹中。