Android softkeyboard never shows up in emulator

I'm new to Android. I've spent two hours already for searching. Whatever i try softkeyboard is never shown for my EditText . I create it simply:

EditText editText = (EditText)findViewById(R.id.editText);

I tried:

 editText.requestFocus();//i tried without this line too
 InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
 imm.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);

and:

editText.setOnFocusChangeListener(new OnFocusChangeListener() {

         @Override
         public void onFocusChange(View v, boolean hasFocus) 
         {    

                     InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
                     imm.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);

         }
     });

i also tried:

getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);

i tried putting this line into AndroidManifest.xml file:

 android:windowSoftInputMode="stateVisible|adjustResize"

but all in vain. It just never shows. What am i missing?


You need to make sure that your emulator is not set to use a hardware keyboard . This can be done by choosing Edit on a selected emulator in the AVD. Then uncheck the Hardware keyboard present setting.

You could also try using a different emulator, such as Genymotion. It supports full hardware acceleration (multi-core CPU as well as GPU) and runs much faster than any of the android emulator images. If you use Genymotion you will need to disable the hardware keyboard within Android (see below for details).

To disable hardware keyboard in Genymotion:
Go to Settings -> Language & input and open the Default item under Keyboard & Input Methods . There is a Hardware setting that you can toggle on/off. When it is on you use your physical keyboard and when it is off the standard soft keyboard should pop-up whenever a text field gets focus.

Screenshots for Genymotion settings: 默认项目

在这里输入图像描述


In version 2.1.1 - click on your virtual device settings - then select "use virtual keyboard for typing" checkbox. 在这里输入图像描述

在这里输入图像描述


There are two places to deselect hardware keyboard in AS 1.1.0. This one isn't sufficient:

在这里输入图像描述

Must do this (click Tools | Android | AVD Manager ; then create new or edit old AVD and then click Show Advanced Settings ; scroll down and clear Enable keyboard input ):

在这里输入图像描述

链接地址: http://www.djcxy.com/p/93324.html

上一篇: 隐藏更衣室应用程序的软键盘

下一篇: Android软键盘永远不会显示在模拟器中