[android] Call getISO3Country() for Locale to check China.

This commit is contained in:
vng 2012-09-25 13:10:27 +03:00 committed by Alex Zolotarev
parent d4cadd28fe
commit bcce8416b6

View file

@ -307,8 +307,8 @@ public class MWMActivity extends NvEventQueueActivity implements LocationService
return true;
else
{
final String lang = Locale.getDefault().getLanguage();
Log.i(TAG, "Current language ISO = " + lang);
final String lang = Locale.getDefault().getISO3Country();
Log.i(TAG, "Locale country ISO = " + lang);
if (isChinaISO(lang))
return true;
}