我正在调用 API 并接收英语和乌尔都语的响应。响应存储在字符串中,乌尔都语部分显示字符文本,如“/u024/”。
我一直在实现这个代码集,它给出的结果与以前的 urdu 字符相同。如果有人可以帮助我解决这个问题
String fontPath = "urdu.ttf";
// text view label
TextView txtGhost = (TextView) findViewById(R.id.ghost);
// Loading Font Face
Typeface tf = Typeface.createFromAsset(getAssets(), fontPath);
// Applying font
txtGhost.setTypeface(tf);