I'm new at Android development and I have a question.
I'm creating a notification for the user. That's all OK. The problem is that when I change the device language, my notification doesn't updates yourself. I don't know if there are any native method to do that on Android.
For now, my solution is: when creating the notification, I create a thread that verifies if the language has changed. If so, it updates my notification. The thread is stoped when the user cleans the notification.
So, I don't know if it's a good pratice, or if there's another whay to to that.
PS: The application has lots of strings.xml files to translate strings. I'm using Thread class to create the thread.
Thanks in advance and sry for the bad english!