Jump to Navigation

Me on Twitter

  • mlocate will never ruin my evenings anymore ! UNINSTALLED ! https://t.co/07wCGOZv2Q 3 years 10 weeks ago
  • "failed to build cryptography" of course... 3 years 11 weeks ago
  • The worst is that I already know that I forgot some optional openssl dependencies and that I'll need to start again... 3 years 11 weeks ago
  • Building https://t.co/oTfN2b5DJ4 inside #docker on #armv7 ... Let's go to bed and see if it's done tomorrow morning… https://t.co/6xUegSZlZz 3 years 11 weeks ago
  • RT @Unexplained: Caption this! https://t.co/FobPIx7gXB 3 years 12 weeks ago
  • Nice pattern : proposing the user to test his password before disconnecting from an always-connected app #keybase #security 3 years 12 weeks ago
  • RT @esascience: These cosmic #fireworks are the motions of numerous stars at the outskirts of our Milky Way as measured by @ESAGaia! 3 years 12 weeks ago
  • Want to really understand how bitcoin works? Here’s a gentle primer | Ars Technica - https://t.co/7nVsFJzG8X 3 years 13 weeks ago
  • @MCetMOI Impossible d'installer l'appli sur un smartphone sans Google... Je crois que je vais arrêter là... Du mal… https://t.co/owPEvVJNXk 3 years 17 weeks ago
  • @MCetMOI Euh... Application d'authentification mise en avant sur des sites d'Etat mais certificat de… https://t.co/EDnElhpcZQ 3 years 17 weeks ago

XML resources

android How to organise XML resources

The first time I read Android developer docs, there was something that was unclear to me : what resource to put in which XML file.

In this article, I will focus on resources in res/values and give some hints about how to name your XML resource files and what kind of resource to put inside.

...

In my case I had only one or two arrays of strings so it was overwhelming to put them in a separate file just because they were of a different type.

Another problem was accessing constant values from both XML layout and Java code. They are constant strings for internal use only, but in order to avoid duplicate declarations I decided to make them available as XML resources. I wanted those resources to be clearly separated from other, 'user visible', resources like GUI labels.

Another thing adding to the fog was the fact that, in derivate files (e.g. strings-fr.xml is derivated from strings.xml), you only want to find values relevant for the given file.
For instance, if you put all values of type 'string' in the same file but only a part of them should be internationalized, you would have a gap between the original and derivated files not only by the translated values but also by the list of values they declare. When coming back to the project after a long time, you might have a hard time remembering why there is this gap.

...

Syndicate content