Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在摘要为“EditText”字段的设置中创建了一个 customPreference。当它被点击时,视图向上滚动键盘并且 editText 没有获得焦点。如何聚焦editText?
在清单文件中添加以下行
android:windowSoftInputMode="adjustPan"
还要添加edittext属性:
android:focusable="true" android:focusableInTouchMode ="true"
和 android:descendantFocusability="blocksDescendants"
android:descendantFocusability="blocksDescendants"
到正在滚动的外部布局。