作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从包含某种样式的 android 方法中创建一封电子邮件,但它不工作,如何实现这一点 - 还是不可能?
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/html");
i.putExtra(Intent.EXTRA_EMAIL , new String[]{"test@example.com"});
i.putExtra(Intent.EXTRA_SUBJECT, "Sample");
i.putExtra(Intent.EXTRA_TEXT , Html.fromHtml("<p style='color: red'>Hello</p>"));
try {
startActivity(Intent.createChooser(i, "Send mail..."));
} catch (android.content.ActivityNotFoundException ex) {
showWarning("There are no email clients installed");
}
最佳答案
首先,Html.fromHtml()
不处理 style
属性。在这种情况下,您可以尝试 <font color="red">
, 虽然我不知道 fromHtml()
Handlebars red
或者只支持十六进制颜色值。或者,您可以使用 SpannableStringBuilder
使用 ForegroundColorSpan
为文本着色.
其次,您将电子邮件委托(delegate)给第三方应用程序。第三方应用程序不一定必须支持内容的样式。因此,您的红色可能会被某些电子邮件客户端删除,但其他人不会。
关于android - 如何在 Android 应用程序电子邮件操作中使用内联样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28985100/
我是一名优秀的程序员,十分优秀!