31

我尝试实现一个可扩展的通知,并为此使用了InboxStyle

基于文档中的以下图像:

收件箱式通知

应该可以设置文本样式。在这种情况下,将“Google Play”加粗。

InboxStyle 只有addLine()在我可以传递 CharSequence 的地方。我尝试Html.fromHtml()并使用了一些 html 格式,但我无法成功。

NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle();
inboxStyle.setBigContentTitle("title");
inboxStyle.setSummaryText("summarytext");
// fetch push messages
synchronized (mPushMessages) {
    HashMap<String, PushMessage> messages = mPushMessages.get(key);
    if (messages != null) {
        for (Entry<String, PushMessage> msg : messages.entrySet()) {
            inboxStyle.addLine(Html.fromHtml("at least <b>one word</b> should be bold!");
        }
        builder.setStyle(inboxStyle);
        builder.setNumber(messages.size());
    }
}

对此有任何想法吗?

4

5 回答 5

49

你不需要使用fromHtml. 我过去遇到过问题fromHtml(当您显示的内容来自用户时,代码注入可能会导致丑陋的事情)。此外,我不喜欢将格式元素放入其中strings.xml(如果您使用服务进行翻译,它们可能会搞砸您的 HTML 标签)。

addLine方法与大多数在通知(setTickersetContentInfosetContentTitle等)中设置文本的方法一样,都将 aCharSequence作为参数。

所以你可以通过一个Spannable. 假设您想要“粗体斜体。”,您可以这样格式化(当然不要硬编码位置):

Spannable sb = new SpannableString("Bold this and italic that.");
sb.setSpan(new StyleSpan(android.graphics.Typeface.BOLD), 0, 4, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
sb.setSpan(new StyleSpan(android.graphics.Typeface.ITALIC), 14, 20, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
inboxStyle.addLine(sb);

现在,如果您需要使用本地化字符串动态构建字符串,例如“今天是[DAY],早上好!”,请将带有占位符的字符串放入strings.xml

<string name="notification_line_format">Today is %1$s, good morning!</string>

然后这样格式化:

String today = "Sunday";
String lineFormat = context.getString(R.string.notification_line_format);
int lineParamStartPos = lineFormat.indexOf("%1$s");
if (lineParamStartPos < 0) {
  throw new InvalidParameterException("Something's wrong with your string! LINT could have caught that.");
}
String lineFormatted = context.getString(R.string.notification_line_format, today);

Spannable sb = new SpannableString(lineFormatted);
sb.setSpan(new StyleSpan(android.graphics.Typeface.BOLD), lineParamStartPos, lineParamStartPos + today.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
inboxStyle.addLine(sb);

你会得到“今天是星期天,早上好!”,据我所知,它适用于所有版本的 Android。

于 2014-02-09T16:03:51.820 回答
7

你的代码在我的带有 Android 4.1.1 的三星 S3 上运行起来就像一个魅力。你用的是什么安卓版本?

import android.app.Activity;
import android.app.NotificationManager;
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.NotificationCompat;
import android.text.Html;
import android.view.Menu;

public class MainActivity extends Activity {

    private final int ID = 1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
                this).setSmallIcon(R.drawable.ic_launcher);
        NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle();
        inboxStyle.addLine(Html
                .fromHtml("<i>italic</i> <b>bold</b> text works"));
        mBuilder.setStyle(inboxStyle);
        mBuilder.setNumber(1);

        NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        mNotificationManager.notify(ID, mBuilder.build());
    }

}
于 2013-02-19T13:07:57.720 回答
7

我为此制作了辅助方法:

private final StyleSpan mBoldSpan = new StyleSpan(Typeface.BOLD);

private SpannableString makeNotificationLine(String title, String text) {
    final SpannableString spannableString;
    if (title != null && title.length() > 0) {
        spannableString = new SpannableString(String.format("%s  %s", title, text));
        spannableString.setSpan(mBoldSpan, 0, title.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    } else {
        spannableString = new SpannableString(text);
    }
    return spannableString;
}

像这样使用:

inboxStyle.addLine(makeNotificationLine("UserXYZ", "How are you?"));
于 2014-08-25T12:35:21.983 回答
3

这是最简单的解决方案

它不使用InboxStyle,因为在我的情况下我不需要它


CharSequence boldUsernameMessage = Html.fromHtml("<b>@" + username +"</b> " + message);

NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext())
    .setContentText(boldUsernameMessage)
    .setStyle(new NotificationCompat.BigTextStyle().bigText(boldUsernameMessage)) // Makes it expandable to show the message
    .build();

结果

在此处输入图像描述

于 2016-04-26T18:37:45.807 回答
2

对于粗体文本,您应该使用<strong>标签。您的代码没有任何问题。换成. <b>_<strong>

编辑:您应该将代码更改为:

NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle();
inboxStyle.setBigContentTitle("title");
inboxStyle.setSummaryText("summarytext");
// fetch push messages
synchronized (mPushMessages) {
    HashMap<String, PushMessage> messages = mPushMessages.get(key);
    if (messages != null) {
        for (Entry<String, PushMessage> msg : messages.entrySet()) {
            inboxStyle.addLine(Html.fromHtml("at least <strong>one word</strong> should be bold!");
        }
        builder.setStyle(inboxStyle);
        builder.setNumber(messages.size());
    }
}
于 2014-03-14T20:00:02.043 回答