2

i want to scrollup full layout when edit text focus to popup keyboard.i didn't find any solution.i want to like facebook app. facebook android app login page when edittext focused keyboard popup full screen scroll up to top like shown below figure:

before keyboard popup like figure below:

enter image description here

after keyboard popup scroll screen to up

enter image description here

can anyone help me.

Stack Overflow User
  • 4,052
  • 6
  • 29
  • 47
  • Are u solve this problem.If you were solved this problem just post your answer which is use full for others...Thanks.. – Satheesh Dec 14 '13 at 07:21

2 Answers2

3

You can use this code in onCreate() method:

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

Try this in the android manifest file corresponding to the activity.

 android:windowSoftInputMode="adjustResize"
baldguy
  • 2,090
  • 1
  • 16
  • 25
0

Add this code in manifest file, inside your activity:

android:windowSoftInputMode="adjustPan"
סטנלי גרונן
  • 2,917
  • 23
  • 46
  • 68
Mukul Raghav
  • 349
  • 2
  • 5