当用户打开时,是否可以使用已定义的字体类型在Android中发送短信,并获取特定字体的文本。 根据我的搜索,可以通过使用utf编码
string text = "\u24D7\u24D4\u24D8\u24D8\u24DB World";
editText.setText(text );
Intent intent = new Intent("android.intent.action.SEND");
intent.setType("text/plain");
intent.putExtra("android.intent.extra.TEXT", text );
startActivity(Intent.createChooser(intent, "Share"));
但它对我不起作用。
答案 0 :(得分:0)