我的应用程序中有一些EditText,当我点击其中任何一个并开始输入时,键入第一个字母后焦点被清除,我在LogCat上得到这个警告:
在包表0中删除条目0x106007b,因为它不复杂!
有谁知道它是什么意思?我在谷歌搜索这个并得到零结果!
答案 0 :(得分:1)
在清单文件中为您的活动添加android:windowSoftInputMode =“adjustPan” 并为edittext添加以下参数 -
android:descendantFocusability="beforeDescendants"
android:focusable="true"
android:focusableInTouchMode="true"