b=605063; fix Android GL startup (hide splashscreen correctly); r=mwu

This commit is contained in:
Vladimir Vukicevic
2010-11-12 12:02:14 -08:00
parent 252c61a85b
commit 7f79f0dd83
6 changed files with 26 additions and 7 deletions

View File

@@ -616,4 +616,11 @@ class GeckoAppShell
InputMethodManager imm = (InputMethodManager) GeckoApp.surfaceView.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showInputMethodPicker();
}
public static void hideProgressDialog() {
if (GeckoApp.mAppContext.mProgressDialog != null) {
GeckoApp.mAppContext.mProgressDialog.dismiss();
GeckoApp.mAppContext.mProgressDialog = null;
}
}
}