很长一段时间以来,我一直在寻找解决方案。我想设置从我的应用程序共享到其他应用程序的文本的字体。
我不知道如何实现这一点,字体在 .ttf 文件中。我正在使用以下代码,但它适用于纯文本。
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "<b>This is a message for you</b><br/>Hello");
mShareActionProvider.setShareIntent(intent);
请让我知道我有可能的选择。
谢谢,阿曼迪普