listview中的Edittext未显示软键盘

时间:2013-11-12 13:28:20

标签: android-layout

我在listview项目中使用了edittext。但即使设置活动android:windowSoftInputMode =“adjustPan”它也无法正常工作。有什么方法可以解决这个问题。 提前谢谢。

2 个答案:

答案 0 :(得分:3)

将此添加到您的视图中。 的机器人:descendantFocusability = “beforeDescendants”

答案 1 :(得分:0)

如果显示的布局没有EditText,则不会加载键盘,请将其粘贴到布局的开头。

    <EditText
        android:visibility="gone"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    ... 
    <ListView ...