1

是否可以在 Android 中设置通知的样式?

  Notification notification = new Notification(R.drawable.notification_icon,
        null,
        mSystem.currentTimeMillis());
    notification.setLatestEventInfo(this,
        getResources().getString(R.string.initializing_notification_title),
        null,
        pendingIntent);

不幸的是,无法在 Android 中以编程方式设置字体样式。有没有办法让我在显示此通知之前设置它的字体颜色和字体大小?

4

1 回答 1

0

在 Android SDK 文档中,他们有一个使用自定义通知布局的好例子:

http://developer.android.com/guide/topics/ui/notifiers/notifications.html#CustomExpandedView

于 2012-05-24T21:31:37.197 回答