编辑文本奇怪的行为

时间:2017-09-13 08:33:35

标签: android android-recyclerview android-edittext android-viewholder

我有一个ExpandableListView,其中包含自定义布局的RecyclerView。此布局包含一些视图,包括我的EditText。

我的行为是:当我点击数字 EditText时,键盘会显示约0.5秒,整个布局会以默认值清除,然后键盘会消失,文字< / strong>出现EditText,最后我失去焦点。当我再次点击它时,键盘会停留,但是在文本类型中。奇怪的是:问题似乎只出现在整个布局溢出屏幕的设备上,因为在10&#34;平板电脑,一切正常(布局未清除,键盘没有消失)。

根据我的说法,当我在EditText中获得焦点时,将重新创建布局,使其被清除。

我花了很长时间才弄明白发生了什么,但我找不到任何东西。这是我尝试过的东西,但没有改变任何东西:

android:descendantFocusability="beforeDescendants" // on all parent of the EditText

focusable="true" // On the EditText

android:windowSoftInputMode="adjustPan" // In the activity in the manifest

making all the ViewHolder attributes final

由于代码对于所有这些事情都非常庞大,我不知道应该发布什么来帮助。因此,如果有任何帮助,请不要犹豫,不要提出任何问题

谢谢!

编辑:Gif显示问题https://imgur.com/a/BPue4

1 个答案:

答案 0 :(得分:0)

尝试在manifest.xml上的活动中添加此行:

android:configChanges="keyboardHidden|screenSize"

打开键盘或屏幕尺寸更改可能会触发重新创建内容。