是否可以在 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 中以编程方式设置字体样式。有没有办法让我在显示此通知之前设置它的字体颜色和字体大小?