On the right side of notification android is showing time. It is possible to show both, date and time as I didn't found any notification api to set the date. Or it is android behaviour to show only time?
Asked
Active
Viewed 904 times
2
-
not sure may be it helps you http://stackoverflow.com/questions/5757997/hide-time-in-android-notification-without-using-custom-layout?lq=1 – saeed Mar 11 '16 at 03:42
1 Answers
1
You can try use RemoteViews
for customize a notification layout.
With RemoteViews you can easily control interface and action with notification.
Refer more than here: https://developer.android.com/reference/android/widget/RemoteViews.html.

Vadim Kotov
- 8,084
- 8
- 48
- 62

Sinh Phan
- 1,180
- 3
- 16
- 36
-
Thats one nice solutions. I never know we can use remote view with custom layout. – Amad Yus Mar 11 '16 at 07:48
-
2