my problem seems be without (smart) solution... please help
I'm working on app that update a persistent notification with temp and weather description.
The problem is that I want show current temp in notification bar but
mNotification = new Notification.Builder(ctx)
.setTicker(number);
this code show but with auto-hide, the only value data still persist in bar it's smallIcon.
The problem is that setSmallIcon() want a resource (int) to work, this is carzy, there are other options?
I don't want put inside app 100 or more little images with number, it's no sense...
Thank you