我使用 Android Studio 和 AVD 模拟器。
当我在 AVD 模拟器上使用 EditText 小部件运行应用程序时,不显示字母数字键盘。
我的 AVD 配置中的参数“有硬件键盘”已关闭,但未显示虚拟键盘。
我尝试使用 inputType 属性但没有成功。为了让虚拟键盘出现在屏幕上,我需要添加/更改什么?
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/topTextInput"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:width="300dp"
android:inputType="textAutoComplete|text"/>