internationalization - Internationalisation in Android application using Xamarin and the MvvmCross framework -
internationalization - Internationalisation in Android application using Xamarin and the MvvmCross framework -
i'am trying implement internationalisation in xamarin application based on mvvmcross framework. that, follow stuart's video http://www.youtube.com/watch?v=vkxhtbj_tlk&feature=youtube_gdata
my problem when seek utilize 1 of resource set in json file, string not returned.
for example, have json file listcustomersviewmodel.json in assets/internationalisationresources/text folder of android application contains :
{ "mytitle":"titre de la page" }
so in order create link textview, set code in axml file listcustomersview.axml :
<textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:textsize="30dp" local:mvxlang="text mytitle" android:id="@+id/textview1" />
but instead of displaying string "titre de la page", application displays "xamarin.client|listcustomersviewmodel|mytitle". "xamarin.client" value gave generalnamespace.
i don't understand source of problem. followed steps described stuart lodge suppose missed something.
if have idea...
android internationalization xamarin mvvmcross
Comments
Post a Comment