Hi, I have something like the following line of code:
Notification notif = new Notification(R.drawable.notification_XX, "Notify", System.currentTimeMillis());
My problem is that i want to make R.drawable.notification_XX
changeable, so for example if I have a variable i = 24;
then the appropriate resource R.drawable.notification_24
should be used
So, is there a way of creating a drawable resource path dynamically?
thanks in advance, Martin