我正在关注此guide来本地化我的应用。我不想获得系统语言,因此我不使用ILocalize
接口和依赖服务。我有这3个用于英语,西班牙语和法语的resx文件:
这是使用指南中的TestPage.xaml
课程的TranslateExtension
代码:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:t="clr-namespace:LanguageTest.Resources;assembly=LanguageTest.Resources"
x:Class="LanguageTest.TestPage">
<Label Text="{t:Translate TestText}" VerticalOptions="Center" HorizontalOptions="Center" />
</ContentPage>
使用此代码,我会初始化语言设置:
public App ()
{
// I can change among "en", "es" and "fr"
AppResources.Culture = new CultureInfo("es");
this.MainPage = new NavigationPage(new TestPage());
}
在这种情况下,文本以西班牙语显示。但是我希望在页面显示后更改语言(例如,使用LanguageSettingsPage
,用户可以在应用程序运行时更改语言。)
public App ()
{
AppResources.Culture = new CultureInfo("es");
this.MainPage = new NavigationPage(new TestPage());
AppResources.Culture = new CultureInfo("fr");
// At this point the texts are diplayed in Spanish, not in French
}
如何在不再执行new TestPage()
的情况下刷新de page以显示法语文本?
答案 0 :(得分:1)
这不是Resx的特定解决方案,但它可以让您根据用户需求加载任何语言。无需手动设置字符串,因为绑定将完成工作。看看I18NPortable和样本。它很容易启动和运行。
绑定样本:
<Button Text="{Binding Strings[key]}" />
动态更改语言(将更新所有绑定):
I18N.Current.Locale = "fr";
答案 1 :(得分:0)
在OnAppearing()方法上保留Text属性的所有Setter,然后从设置页面返回后,它将获取resx文件中的最新值。即使您回到页面,也会调用OnAppearing()方法。 但是对于同一页面来更改语言必须再次呈现页面或重新加载该页面中元素的Text属性。
答案 2 :(得分:0)
如果您只是弹出页面,则不会再次评估资源。您只是在导航堆栈上显示上一页(仍在内存中)。
您需要推送新页面以便加载新的资源文本。