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 でフォント スタイルをプログラムで設定することはできません。この通知が表示される前に、この通知のフォントの色とフォント サイズを設定する方法はありますか?