So I have an Ionic/Phonegap app that I just built using ionic start myApp tabs then I added an input on one of the views. When I focus the input using an android em
ionic start myApp tabs
Add following css classes in your Style.ccs
/* Hide bottom tab bar when keyboard appears*/ .keyboard-open .has-tabs { bottom: 0; } body.keyboard-open .has-footer { bottom: 0; }
above css classes will do the trick of hiding bottom tab bar when keyboard appears.