android - How to format the time which is shown on notification? -
android - How to format the time which is shown on notification? -
i have problem modifying alarm application's notification, want alter time shown notification using these code :
....... calendar cal = calendar.getinstance(); cal.add(calendar.minute, addminute); notification.when = cal.gettimeinmillis(); notificationmanager.notify(notif_id, notification); but problem notification time not in right format show mm/dd/yy, instead of hh:mm , possible alter format? cant find apropriate method alter them.
i did search cant find way that. suggestion how format time in notification?
thanks
i have solved it. couldn't figure out how delete or format time on standard notification, can create custom notification using notificationbuilder, , passed formatted string time custom notification instead of time.
android notifications
Comments
Post a Comment