i'm encountering an issue. I'm developping an Android application which contains several Activities. And i want to let the user choose black or white design dynamically. My issue is that i don't know how i must change the design for my Activites when they're on the backstack. I though about 2 options :
- Change programmatically the color of each view on each activity.
- Do two versions of each activity. A black one and a white one and switch beetween them according to the user color choice.
Which one is the better way ? Is there another way to achieve this ?
Regards.