我在listview项目中使用了edittext。但即使设置活动android:windowSoftInputMode =“adjustPan”它也无法正常工作。有什么方法可以解决这个问题。 提前谢谢。
答案 0 :(得分:3)
将此添加到您的视图中。 的机器人:descendantFocusability = “beforeDescendants”强>
答案 1 :(得分:0)
如果显示的布局没有EditText,则不会加载键盘,请将其粘贴到布局的开头。
<EditText
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
...
<ListView ...