By default, Android will display Toast messages at the bottom of the screen even if the keyboard is showing. This will show a Toast message just above the keyboard.
public void showMessage(final String message, final int length) {
View root = findViewById(android.R.id.content);
Toast toas...