am d753b42d: Bug 2246631 - Show soft keyboard on launcher dialogs

Merge commit 'd753b42d5170ec30172393be538b957b00345d97' into eclair-mr2

* commit 'd753b42d5170ec30172393be538b957b00345d97':
  Bug 2246631 - Show soft keyboard on launcher dialogs
This commit is contained in:
Joe Onorato
2009-11-09 16:15:38 -08:00
committed by Android Git Automerger
+4
View File
@@ -1559,6 +1559,10 @@ public final class Launcher extends Activity
final AlertDialog dialog = builder.create();
dialog.setOnShowListener(new DialogInterface.OnShowListener() {
public void onShow(DialogInterface dialog) {
mInput.requestFocus();
InputMethodManager inputManager = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.showSoftInput(mInput, 0);
}
});