可扩展ListView

时间:2018-04-24 04:59:48

标签: android listview android-edittext

在展开式ListView中,我在一行的每个子项目中都有4个EditText,当我通过触摸子项中的任何人EditText尝试顶部打开的键盘时,EditText焦点不会发生在点击/触摸EditText上。我使用 adjustPan 作为清单中的活动。感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

不要使用adjustPan。不要使用adjustResize。

android:windowSoftInputMode="adjustResize"

在xml文件中写下父布局中的代码。

        android:focusable="true"
        android:focusableInTouchMode="true"
相关问题