I'm trying to get the height of the Android keyboard that appears on-screen so I can move textboxes up into the screen's view.
Looking through the android_tools.cpp code for setSoftInputVisibility, I see jclass classView = jni->FindClass("android/view/View"); and jmethodID mid_getDecorView = jni->GetMethodID(classWindow, "getDecorView", "()Landroid/view/View;");
which I assume are pieces of something I need to determine the height.
Just wanted to see if anyone knew of a way to get their keyboard height

Thanks