* from the indicator on the system taskbar.
*/
static void onInputLangChange(long lcid) {
// remember the new locale as selected in the
// input context of the focused component
InputMethodContext imc = IMManager.getLastActiveIMC();
if (imc == null) {
return;
}
InputMethod im = imc.getInputMethod();
if (im instanceof NativeIM) {
im.setLocale(hkl2Locale(lcid));
}
}