是否可以在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中以编程方式设置字体样式。有没有办法让我在显示之前设置此通知的字体颜色和字体大小?
答案 0 :(得分:0)
在Android SDK文档中,他们有一个使用自定义通知布局的好例子:
http://developer.android.com/guide/topics/ui/notifiers/notifications.html#CustomExpandedView