Created a customPreference in settings in which summary is "EditText" field. When it is clicked , view scrolls up for the keyboard and editText is not getting focussed. How to focus editText?
Asked
Active
Viewed 37 times
1 Answers
0
Add below line in manifest file
android:windowSoftInputMode="adjustPan"
Also add edittext properties :
android:focusable="true"
android:focusableInTouchMode ="true"
and android:descendantFocusability="blocksDescendants"
to outer layout that is getting scrolled.

Santosh Kathait
- 1,444
- 1
- 11
- 22
-
can't set android:descendantFocusability in preference. – quest Mar 06 '15 at 04:13