在Xamarin.Android中,我具有用德语翻译的String资源和默认的英语翻译。当应用运行时,它仅获取德语字符串。如何在不更改设备区域设置的情况下获取英语翻译?
<string name="exampleResource">Example string</string>
<string name="exampleResource">Beispiel string</string>
我需要在运行时在Xamarin应用程序中显示第二个翻译。
答案 0 :(得分:0)
您是否尝试过更改resx对象的区域性?
AppResources.Culture = new CultureInfo("en-EN");