Hello everybody. I'm working on common Android problem - after changing of locale (in Settings, for ex.) framework does not change language of text of Notifications in Notification window.
I know, that architecture of Android Notification apparatus does not allow to change language of notifications - Notification Manager receives only one string for ticket text from activity (or service etc.) and after that forgets about origin of that string (and of cource, it never knows about that string's analogues in other languages). Due to that, I've decided to extend working of Android Notifications for some necessary applets: these applets will send some kind of extented Notifications - with info about all accessible analogue of string in other languages. Notification Service will store all of the variants for these string and onConfigurationChanged (when new locale is applied) will choose appropriate variant and update active Notifications. But during implementation of that I've met with commonplace problem: Activity is not able to pick resources of languages, that are not active now due to limitations of R class. Does anyone knows some way to get all language variants of some string runtime? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

