能否在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 中用程序设置字体样式 。 是否有办法让我在显示此通知之前先设定其字体颜色和字体大小?