Add JavaScript method to get the system locale

This commit is contained in:
ryanw-se 2015-07-06 12:06:35 -04:00
Родитель 90beaf2c52
Коммит 80afd1b2bc
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -22,6 +22,8 @@ import org.mozilla.webmaker.activity.Element;
import org.mozilla.webmaker.router.Router;
import org.mozilla.webmaker.storage.MemStorage;
import java.util.Locale;
public class WebAppInterface {
protected Context mContext;
@ -290,4 +292,14 @@ public class WebAppInterface {
public boolean isDebugBuild() {
return BuildConfig.DEBUG;
}
/**
* ----------------------------------------
* Get System Locale
* ----------------------------------------
*/
@JavascriptInterface
public String getSystemLocale() {
return Locale.getDefault().toString();
}
}