我的应用程序上有一个edittext,我想在模拟器上使用软键盘。但问题是它没有显示键盘。 我已经尝试了很多东西,但它并没有充分利用我: -
第一
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(tee_tea_edit_text, InputMethodManager.SHOW_IMPLICIT);
第二
alredy点击此
Edit your AVD, add "Keyboard Support" and change the value to no.
Restart your AVD making sure that you wipe user data. Your keyboard will popup now.
尝试了很多东西,但没有尽量使用。
How can I make the Android emulator show the soft keyboard?
Android 4.0 keyboard issue in emulator.?
我的avd图片如下: -
答案 0 :(得分:4)
您可以尝试编辑AVD并设置两者:
Keyboard Lid Support
和Keyboard Support
至YES
然后重新启动AVD。可能会有用。
答案 1 :(得分:2)
转到Android虚拟设备,选择您的决定并取消选中以下内容的复选框:"硬件键盘存在"然后重新启动AVD
答案 2 :(得分:0)
确保您没有
android:textIsSelectable="true"
在布局中的标记中。