使用字体类型发送Sms android

时间:2016-01-01 11:02:28

标签: android android-activity fonts

当用户打开时,是否可以使用已定义的字体类型在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"));

但它对我不起作用。

1 个答案:

答案 0 :(得分:0)

抱歉不可能,因为android没有提供任何功能来向第三方应用程序发送带字体类型的文本。