0

I have an activity that inside of it displaying a fragment .I want when keyboard is displaying activity resize I try android:windowSoftInputMode="adjustResize" in my manifest but it doesn't resize my layout.My layout is inside a scrollview also.

Zafer Celaloglu
  • 1,438
  • 1
  • 17
  • 28
zohreh
  • 1,055
  • 1
  • 9
  • 26

1 Answers1

0

Introduced the following property for your activity tag in the manifest file:

 android:windowSoftInputMode="stateVisible|adjustResize|adjustPan"

Also you needed to add following code in the activity's OnCreate function:

this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
Mykhailo
  • 331
  • 3
  • 18