Android,语言文件不起作用

Android,语言文件不起作用,第1张

概述我现在正在创建一个android应用,并尝试为我的母语添加语言文件.但是以某种方式这对我不起作用,尝试将应用程序加载到两部不同的手机中,结果相同.之前创建语言文件具有良好的效果,但是这次没有.(电话设置为瑞典语,语言文件可用于我创建的其他应用程序.)在我的项目中resvalu

我现在正在创建一个android应用,并尝试为我的母语添加语言文件.
但是以某种方式这对我不起作用,尝试将应用程序加载到两部不同的手机中,结果相同.之前创建语言文件具有良好的效果,但是这次没有. (电话设置为瑞典语,语言文件可用于我创建的其他应用程序.)

在我的项目中

res   values      strings.xml      style.xml   values-se      strings.xml   [more not values folder]

目标语言是瑞典语(se),但我找不到在我的应用中无法正常工作的方式.

values / strings.xml文件

<?xml version="1.0" enCoding="utf-8"?><resources>    <string name="app_name">My Quick Notes</string>    <string name="delete_item">Delete this note?</string>    <string name="add_item">Add new note</string>    <string name="switch_note_mode">Switches notes mode</string>    <string name="text_about">About</string>    <string name="text_help">Help</string>    <string name="text_ok">Ok</string>    <string name="text_switch_mode">Switch Mode</string>    <string name="text_about_message" formatted="false">Created by figaro\nA simple notepad app.\ncopyright © 2012\nfigaro@evigfilosofi.se</string>    <string name="text_help_message">A simple notepad app for make quick notes.\n        \nClick on the first note with the green plus chars for add a new note.\n        \nMy Quick Notes support mulit List mode as normal mode, bullet List and checkBox List.        \nThe checkBox mode can be use for create a check List and check off List. Click on the checkBox for toggle the checkBox.    </string></resources>

和值-se / strings.xml

<?xml version="1.0" enCoding="utf-8"?><resources>    <string name="app_name">My Quick Notes</string>    <string name="delete_item">Radera anteckning</string>    <string name="add_item">Ny anteckning</string>    <string name="switch_note_mode">Växa anteckningsläge</string>    <string name="text_about">Om</string>    <string name="text_help">Hjälp</string>    <string name="text_ok">Ok</string>    <string name="text_switch_mode">Växla Läge</string>    <string name="text_about_message" formatted="false">Skapad av figaro\nEn enkel antecknings app\ncopyright © 2012\nfigaro@evigfilosofi.se</string>    <string name="text_help_message" formatted="false">En enkel notepad för att snabbt göra anteckningar\n        \nKlicka på den första noten med grönt plustecken för att skapa en ny anteckning.\n        \nMy Quick Notes stöder flera List lägen så som normalt läge, punktLista och checkBoxLista\n        \nCheckBox läge kan användas för att skapa checkListor som kan prickas av. Klicka på checkrutan för att ändra den.    </string></resources>

这两个文件的类型都是utf-8(记事本说),
我也尝试用瑞典文档案取代英文副本,而这项工作是
我看到的是,系统仅选择默认语言文件和自定义文件?

有人知道这对我不起作用吗?

解决方法:

您使用的是瑞典顶级域名缩写,在这种情况下,您不应使用该缩写.

瑞典语的瑞典语Android localization代码为values-sv-rSE

sv是瑞典语的实际代码

总结

以上是内存溢出为你收集整理的Android,语言文件不起作用全部内容,希望文章能够帮你解决Android,语言文件不起作用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1085604.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存