Show Toast above keyboard

android, keyboard, toast

Solution

You can change toast postion by following code.

Toast toast= Toast.makeText(getApplicationContext(), 
"Your string here", Toast.LENGTH_SHORT);  
toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 0);
toast.show();

Problem

Is it possible to show a Toast message in Android above the keyboard instead of on it when the keyboard is on the screen?

Original source

Related problems