2

我的应用程序中有一些 EditText ,当我单击其中任何一个并开始输入时,输入第一个字母后焦点被清除,并且在 LogCat 上收到此警告:

跳过包表 0 中的条目 0x106007b,因为它并不复杂!

有谁知道这是什么意思?我在谷歌上搜索了这个结果为零!

4

1 回答 1

1

在清单文件中为您的活动添加 android:windowSoftInputMode="adjustPan" 并为 edittext 添加以下参数 -

    android:descendantFocusability="beforeDescendants"
    android:focusable="true"
    android:focusableInTouchMode="true"
于 2013-10-14T12:25:58.927 回答