Localization and drawables

非 Y 不嫁゛ 提交于 2019-11-27 19:38:00

As far as I remember, only certain res folders will work. You need to call it drawable-[language code]-r[capitalised localisation code] if I remember rightly. Pretty sure it's one of the Android Tutorials.

Yeah here it is http://developer.android.com/resources/tutorials/localization/index.html

Each Android resource can have configuration parts in its resource name. For example you might have a plain image on

res/drawable

and a image for a high DPI screen on

res/drawable-hdpi

Here hdpi is a Screen pixel density configration. A list of supported Android resource configurtions can be found from here

http://developer.android.com/guide/topics/resources/providing-resources.html

The order of configurations are important. They must be on specific order. Your original Norwegian language configuration is on a wrong place. Change

res/drawable-hdpi-no

to

res/drawable-no-hdpi

and it works.

yes, it is possible by. drawable-de-rDE-ldpi,drawable-de-rDE-mdpi . use it

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!