0

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?

quest
  • 447
  • 2
  • 7
  • 20

1 Answers1

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