6

如何插入 Unicode 符号来编辑文本?在 iOS 中,我们可以通过指定代码来做到这一点,即\U0001F68Aandroid 呢?

4

2 回答 2

6
editText.setText("\u00A9 2013 by John Smith");

将版权符号后跟“John Smith 的 2013”​​放入 EditText 编辑文本中。

于 2013-03-25T02:17:24.060 回答
4
editText.getText().append("\uD83D\uDE0A");
于 2012-10-06T10:49:10.987 回答