Android将unicode String设置为textview

时间:2016-09-17 06:37:18

标签: android unicode

我可以通过text布局上的xml属性将Unicode字符/字符串设置为TextView,如下所示:

android:text=""

但是我无法用java代码设置Unicode:

icon_notify_post_message.setText("");

""是我从这个site找到的图标,当我尝试从xml布局设置它时它唯一的工作,当我尝试设置时不工作是来自java代码

1 个答案:

答案 0 :(得分:1)

将String中的unicode保存为一些名称。然后在textview中设置它使用:icon_notify_post_message.setText(getstring(// your string))。 它是在textview中使用unicode的推荐和标准方法。  或者这是一种非常常见的方式(我使用的方式):

String str = "\u00C7" + getContext().getString(R.string.your_string);

Entering the text as HTML in java:

yourTextView.setText(Html.fromHtml("your chars"));