Keyboard plugin not wotking

Hello All how r u ?

i have some issues with keyboard plugin in android.
cordova.plugins.Keyboard.disableScroll(false); it’s not working at all i don’t know why…

if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
      cordova.plugins.Keyboard.disableScroll(false);
    }

plz some help

best regard

Can you tell us what u are trying to do with some screens ?

thanks for ur replay
i need to do:
in registration page when keyboard is open the screen is gone the upper part from it.
i need to keep scroll there to be flexible to user to go up and down.

Have you replaced in your platforms/android/AndroidManifest.xml

android:windowSoftInputMode="adjustPan"

with

android:windowSoftInputMode="adjustResize"

yes it’s {android:windowSoftInputMode=“adjustResize”}

Can you show us your code ? your .config and .run ?

u mean ionic.config?!

angular.module('app', ['ionic', 'app.controllers', 'app.routes', 'app.directives','app.services',])

.run(function($ionicPlatform, $state, PopupService, $interval, $timeout, BluetoothService, ScanService, NotificationService, KeyboardStatusBarService, $http) {
// what's here ?
appJS.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
    // for form inputs)
    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
      cordova.plugins.Keyboard.disableScroll(false);
    }
    if(window.StatusBar) {
      StatusBar.styleDefault();
    }
  });
})

seems to be good to me, can you try to put

  cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
  cordova.plugins.Keyboard.disableScroll(true);

just to check something

also it is not working -_-

Version of your plugin keyboard ?
Show your template and your css on it if you can.