2016-06-22 17 views

回答

0

請儘量將

myTextView.setText(Html.fromHtml("e<sup>z</sup>")); 
0

嘗試通過代碼作爲HTML字符串

TextView tv = (TextView)findViewById(R.id.textview); 
tv.setText(Html.fromHtml(txtString)); 
設置文本
相關問題